more things
This commit is contained in:
parent
668d56e7bd
commit
748b56d842
36
.github/workflows/build-emu.yml
vendored
36
.github/workflows/build-emu.yml
vendored
|
@ -14,13 +14,26 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
override: true
|
||||
target: aarch64-unknown-linux-gnu, x86_64-unknown-linux-gnu
|
||||
- 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
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
use-cross: true
|
||||
command: build
|
||||
args: --release --target aarch64-unknown-linux-gnu
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
use-cross: true
|
||||
command: build
|
||||
args: --release --target x86_64-unknown-linux-gnu
|
||||
|
||||
|
||||
build-mac:
|
||||
|
@ -28,8 +41,15 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
override: true
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo build --verbose --release
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
use-cross: true
|
||||
command: build
|
||||
|
||||
|
||||
build-windows:
|
||||
|
@ -37,7 +57,13 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: nightly
|
||||
override: true
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo build --verbose --release
|
||||
|
||||
- uses: actions-rs/cargo@v1
|
||||
with:
|
||||
use-cross: true
|
||||
command: build
|
||||
|
11
.github/workflows/build-vst.yml
vendored
11
.github/workflows/build-vst.yml
vendored
|
@ -3,7 +3,7 @@ name: Build VST
|
|||
on:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
# paths: ["gb-vst/**", "lib/**", "vendored/**"]
|
||||
paths: ["gb-vst/**", "lib/**", "vendored/**"]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
@ -29,3 +29,12 @@ jobs:
|
|||
- uses: actions/checkout@v3
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo xtask bundle-universal vst --verbose --release
|
||||
|
||||
build-windows:
|
||||
runs-on: windows-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- run: git submodule update --init --recursive
|
||||
- run: cargo xtask bundle vst --verbose --release
|
||||
|
2
rust-toolchain.toml
Normal file
2
rust-toolchain.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[toolchain]
|
||||
channel = "nightly"
|
Loading…
Reference in a new issue