get rom for vst

This commit is contained in:
Alex Janka 2023-04-06 14:58:28 +10:00
parent e82baab292
commit 2d561ec604
2 changed files with 7 additions and 3 deletions

View file

@ -17,6 +17,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: git submodule update --init --recursive
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
toolchain: nightly toolchain: nightly
@ -26,7 +27,6 @@ jobs:
with: with:
packages: libasound2-dev libudev-dev packages: libasound2-dev libudev-dev
version: 1.0 version: 1.0
- run: git submodule update --init --recursive
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
with: with:
command: build command: build

View file

@ -17,6 +17,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: git submodule update --init --recursive
- run: mkdir test-roms
- uses: suisei-cn/actions-download-file@v1.3.0
with:
url: 'https://github.com/trash80/mGB/raw/master/Releases/mGB1_3_0.gb'
target: test-roms/
- uses: actions-rs/toolchain@v1 - uses: actions-rs/toolchain@v1
with: with:
toolchain: nightly toolchain: nightly
@ -26,8 +32,6 @@ jobs:
with: with:
packages: libasound2-dev libudev-dev xorg-dev libjack-jackd2-dev packages: libasound2-dev libudev-dev xorg-dev libjack-jackd2-dev
version: 1.0 version: 1.0
- run: rustup update nightly && rustup default nightly
- run: git submodule update --init --recursive
- uses: actions-rs/cargo@v1 - uses: actions-rs/cargo@v1
if: ${{ matrix.os != 'macos' }} if: ${{ matrix.os != 'macos' }}
with: with: