From 528fc09da8272a2e10665557d12890e9e502971d Mon Sep 17 00:00:00 2001 From: falkTX Date: Sat, 19 Nov 2022 21:11:09 +0000 Subject: [PATCH] Add the others CI runners for testing Signed-off-by: falkTX --- .github/workflows/example-plugins.yml | 25 ++++++++++++++----------- 1 file 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 }}