get rom for vst
This commit is contained in:
parent
e82baab292
commit
2d561ec604
2
.github/workflows/build-emu.yml
vendored
2
.github/workflows/build-emu.yml
vendored
|
@ -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
|
||||||
|
|
8
.github/workflows/build-vst.yml
vendored
8
.github/workflows/build-vst.yml
vendored
|
@ -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:
|
||||||
|
|
Loading…
Reference in a new issue