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:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
paths: ["gb-emu/**", "lib/**", "vendored/**"]
|
||||
# paths: ["gb-emu/**", "lib/**", "vendored/**"]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
@ -19,4 +19,4 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- 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:
|
||||
push:
|
||||
branches: [ "main" ]
|
||||
paths: ["gb-vst/**", "lib/**", "vendored/**"]
|
||||
# paths: ["gb-vst/**", "lib/**", "vendored/**"]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
@ -19,7 +19,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: cargo xtask bundle vst --verbose --release
|
||||
run: git submodule update --init --recursive && cargo xtask bundle vst --verbose --release
|
||||
|
||||
build-mac:
|
||||
runs-on: macos-latest
|
||||
|
@ -27,4 +27,4 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- 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