build actions for github
Some checks are pending
build / linux (linux-arm64) (push) Waiting to run
build / linux (linux-armhf) (push) Waiting to run
build / linux (linux-i686) (push) Waiting to run
build / linux (linux-riscv64) (push) Waiting to run
build / linux (linux-x86_64) (push) Waiting to run
build / macos (macos-intel) (push) Waiting to run
build / macos (macos-universal) (push) Waiting to run
build / windows (win32) (push) Waiting to run
build / windows (win64) (push) Waiting to run
Some checks are pending
build / linux (linux-arm64) (push) Waiting to run
build / linux (linux-armhf) (push) Waiting to run
build / linux (linux-i686) (push) Waiting to run
build / linux (linux-riscv64) (push) Waiting to run
build / linux (linux-x86_64) (push) Waiting to run
build / macos (macos-intel) (push) Waiting to run
build / macos (macos-universal) (push) Waiting to run
build / windows (win32) (push) Waiting to run
build / windows (win64) (push) Waiting to run
This commit is contained in:
parent
6f2cd274a5
commit
c0452d4de0
53
.github/workflows/build.yml
vendored
Normal file
53
.github/workflows/build.yml
vendored
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
name: build
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
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
|
Loading…
Reference in New Issue
Block a user