commit 528fc09da8272a2e10665557d12890e9e502971d
parent 31619d75322f0c9b5efa722226160eb1f232c334
Author: falkTX <falktx@falktx.com>
Date: Sat, 19 Nov 2022 21:10:42 +0000
Add the others CI runners for testing
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git 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 }}