get submodules
This commit is contained in:
parent
4cf152a5ef
commit
c7b7be9b25
2 changed files with 5 additions and 5 deletions
4
.github/workflows/build-emu.yml
vendored
4
.github/workflows/build-emu.yml
vendored
|
@ -3,7 +3,7 @@ name: Build Emulator
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
paths: ["gb-emu/**", "lib/**", "vendored/**"]
|
# paths: ["gb-emu/**", "lib/**", "vendored/**"]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
@ -19,4 +19,4 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose --release
|
run: git submodule update --init --recursive && cargo build --verbose --release
|
||||||
|
|
6
.github/workflows/build-vst.yml
vendored
6
.github/workflows/build-vst.yml
vendored
|
@ -3,7 +3,7 @@ name: Build VST
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
paths: ["gb-vst/**", "lib/**", "vendored/**"]
|
# paths: ["gb-vst/**", "lib/**", "vendored/**"]
|
||||||
|
|
||||||
env:
|
env:
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
|
@ -19,7 +19,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo xtask bundle vst --verbose --release
|
run: git submodule update --init --recursive && cargo xtask bundle vst --verbose --release
|
||||||
|
|
||||||
build-mac:
|
build-mac:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
@ -27,4 +27,4 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo xtask bundle-universal vst --verbose --release
|
run: git submodule update --init --recursive && cargo xtask bundle-universal vst --verbose --release
|
||||||
|
|
Loading…
Add table
Reference in a new issue