Skip to content

Commit

Permalink
ci: add GitHub actiosn workflow based on distrho/dpf-makefile-action
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Arndt <[email protected]>
  • Loading branch information
SpotlightKid committed Nov 14, 2024
1 parent 89fda9d commit fc197be
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
name: Build and test plugin

on:
push:
branches:
- "*"
pull_request:
branches:
- "*"

jobs:
linux:
strategy:
matrix:
target:
- linux-arm64
- linux-armhf
- linux-i686
- linux-riscv64
- linux-x86_64
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: ${{ matrix.target }}

macos:
strategy:
matrix:
target:
- macos-intel
- macos-universal
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: ${{ matrix.target }}

windows:
strategy:
matrix:
target:
- win32
- win64
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: ${{ matrix.target }}

pluginval:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: pluginval

source:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: distrho/dpf-makefile-action@v1
with:
target: source

0 comments on commit fc197be

Please sign in to comment.