Skip to content

Commit cb75761

Browse files
committed
fix(CI): cross-compile - only cargo check pluginlab / use actions/checkout to enable cli
1 parent db001ca commit cb75761

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/cross-compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
run: rustup target add x86_64-unknown-linux-gnu x86_64-apple-darwin aarch64-apple-darwin
2424

2525
- name: Check out source code
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
- name: Check
29-
run: cargo check
29+
run: cargo check -p pluginlab
3030

3131
- name: Build
3232
run: cargo build -p pluginlab --release --target x86_64-unknown-linux-gnu --target x86_64-apple-darwin --target aarch64-apple-darwin

.github/workflows/rust-host.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
env:
8484
RELEASE_NAME: ${{ github.ref_name }}
8585
steps:
86+
- uses: actions/checkout@v4
8687
- name: Restore cached wasm files
8788
id: cache-wasm-files-restore
8889
uses: actions/cache/restore@v4

0 commit comments

Comments
 (0)