fixes
This commit is contained in:
parent
c7b7be9b25
commit
668d56e7bd
37
.github/workflows/build-emu.yml
vendored
37
.github/workflows/build-emu.yml
vendored
|
@ -9,14 +9,35 @@ env:
|
|||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: git submodule update --init --recursive && cargo build --verbose --release
|
||||
- uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
with:
|
||||
packages: libasound2-dev libudev-dev
|
||||
version: 1.0
|
||||
- run: rustup update nightly && rustup default nightly
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo build --verbose --release
|
||||
|
||||
|
||||
build-mac:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo build --verbose --release
|
||||
|
||||
|
||||
build-windows:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo build --verbose --release
|
||||
|
||||
|
21
.github/workflows/build-vst.yml
vendored
21
.github/workflows/build-vst.yml
vendored
|
@ -9,22 +9,23 @@ env:
|
|||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: git submodule update --init --recursive && cargo xtask bundle vst --verbose --release
|
||||
- uses: awalsh128/cache-apt-pkgs-action@latest
|
||||
with:
|
||||
packages: libasound2-dev libudev-dev xorg-dev libjack-jackd2-dev
|
||||
version: 1.0
|
||||
- run: rustup update nightly && rustup default nightly
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo xtask bundle-universal vst --verbose --release
|
||||
|
||||
build-mac:
|
||||
runs-on: macos-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: git submodule update --init --recursive && cargo xtask bundle-universal vst --verbose --release
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo xtask bundle-universal vst --verbose --release
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 18403c1d4fe2a8a879879b0534f1306d869c1eda
|
||||
Subproject commit 974ed55ea29fd5fe2f0de85f53aaa552f3b38d32
|
Loading…
Reference in a new issue