|
|
@@ -1,10 +1,22 @@ |
|
|
|
name: build |
|
|
|
|
|
|
|
on: |
|
|
|
push: |
|
|
|
on: [push, pull_request] |
|
|
|
|
|
|
|
jobs: |
|
|
|
linux: |
|
|
|
linux-cmake: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64] |
|
|
|
runs-on: ubuntu-20.04 |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
with: |
|
|
|
submodules: recursive |
|
|
|
- uses: distrho/dpf-cmake-action@v1 |
|
|
|
with: |
|
|
|
target: ${{ matrix.target }} |
|
|
|
|
|
|
|
linux-make: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64] |
|
|
@@ -17,7 +29,20 @@ jobs: |
|
|
|
with: |
|
|
|
target: ${{ matrix.target }} |
|
|
|
|
|
|
|
macos: |
|
|
|
macos-cmake: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
target: [macos-intel, macos-universal] |
|
|
|
runs-on: macos-11 |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
with: |
|
|
|
submodules: recursive |
|
|
|
- uses: distrho/dpf-cmake-action@v1 |
|
|
|
with: |
|
|
|
target: ${{ matrix.target }} |
|
|
|
|
|
|
|
macos-make: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
target: [macos-intel, macos-universal] |
|
|
@@ -30,7 +55,21 @@ jobs: |
|
|
|
with: |
|
|
|
target: ${{ matrix.target }} |
|
|
|
|
|
|
|
windows: |
|
|
|
windows-cmake: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
target: [win32, win64] |
|
|
|
runs-on: ubuntu-20.04 |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
with: |
|
|
|
submodules: recursive |
|
|
|
- uses: distrho/dpf-cmake-action@v1 |
|
|
|
with: |
|
|
|
target: ${{ matrix.target }} |
|
|
|
pawpaw: true |
|
|
|
|
|
|
|
windows-make: |
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
target: [win32, win64] |
|
|
|