just check out both repositories in the CI job
This commit is contained in:
parent
e4b34a7c50
commit
73a3c19ad5
2 changed files with 12 additions and 2 deletions
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
|
@ -4,13 +4,24 @@ jobs:
|
||||||
build:
|
build:
|
||||||
runs-on: windows-2019
|
runs-on: windows-2019
|
||||||
steps:
|
steps:
|
||||||
|
# Check out code
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
path: editor
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
repository: iptq/libosu
|
||||||
|
with:
|
||||||
|
path: libosu
|
||||||
|
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
- run: |
|
- name: build
|
||||||
|
working-directory: editor
|
||||||
|
run: |
|
||||||
cargo build --release
|
cargo build --release
|
||||||
- uses: actions/upload-artifact@v2
|
- uses: actions/upload-artifact@v2
|
||||||
|
working-directory: editor
|
||||||
with:
|
with:
|
||||||
name: editor.exe
|
name: editor.exe
|
||||||
path: target/release/editor.exe
|
path: target/release/editor.exe
|
||||||
|
|
|
@ -34,7 +34,6 @@ gfx_device_gl = "0.16.2"
|
||||||
|
|
||||||
[dependencies.libosu]
|
[dependencies.libosu]
|
||||||
path = "../libosu"
|
path = "../libosu"
|
||||||
version = "*"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
clippy = []
|
clippy = []
|
||||||
|
|
Loading…
Reference in a new issue