just check out both repositories in the CI job

This commit is contained in:
Michael Zhang 2022-01-10 16:57:59 -06:00
parent e4b34a7c50
commit 73a3c19ad5
Signed by: michael
GPG key ID: BDA47A31A3C8EE6B
2 changed files with 12 additions and 2 deletions

View file

@ -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

View file

@ -34,7 +34,6 @@ gfx_device_gl = "0.16.2"
[dependencies.libosu] [dependencies.libosu]
path = "../libosu" path = "../libosu"
version = "*"
[features] [features]
clippy = [] clippy = []