summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2022-11-19 21:11:09 +0000
committerfalkTX <falktx@falktx.com>2022-11-19 21:12:27 +0000
commit528fc09da8272a2e10665557d12890e9e502971d (patch)
tree39ea3c032b80453424fcad12d40e2a9bf4e5a730
parent31619d75322f0c9b5efa722226160eb1f232c334 (diff)
Add the others CI runners for testing
Signed-off-by: falkTX <falktx@falktx.com>
-rw-r--r--.github/workflows/example-plugins.yml25
1 files changed, 14 insertions, 11 deletions
diff --git a/.github/workflows/example-plugins.yml b/.github/workflows/example-plugins.yml
index f7103f99..f7352d38 100644
--- a/.github/workflows/example-plugins.yml
+++ b/.github/workflows/example-plugins.yml
@@ -4,10 +4,10 @@ on:
push:
jobs:
- linux:
+ ubuntu-20-04:
strategy:
matrix:
- target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64]
+ target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64, win32, win64, pluginval]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
@@ -18,11 +18,11 @@ jobs:
dpf_path: .
target: ${{ matrix.target }}
- macos:
+ ubuntu-22-04:
strategy:
matrix:
- target: [macos-intel, macos-universal]
- runs-on: macos-11
+ target: [linux-arm64, linux-armhf, linux-i686, linux-riscv64, linux-x86_64, win32, win64, pluginval]
+ runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
@@ -32,11 +32,11 @@ jobs:
dpf_path: .
target: ${{ matrix.target }}
- windows:
+ macos-11:
strategy:
matrix:
- target: [win32, win64]
- runs-on: ubuntu-20.04
+ target: [macos-intel, macos-universal]
+ runs-on: macos-11
steps:
- uses: actions/checkout@v3
with:
@@ -46,8 +46,11 @@ jobs:
dpf_path: .
target: ${{ matrix.target }}
- pluginval:
- runs-on: ubuntu-20.04
+ macos-12:
+ strategy:
+ matrix:
+ target: [macos-intel, macos-universal]
+ runs-on: macos-12
steps:
- uses: actions/checkout@v3
with:
@@ -55,4 +58,4 @@ jobs:
- uses: distrho/dpf-makefile-action@v1
with:
dpf_path: .
- target: pluginval
+ target: ${{ matrix.target }}