-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #544 from coasys/ci-fixes
CI fixes and improvements
- Loading branch information
Showing
1 changed file
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,10 @@ jobs: | |
name: Build ADAM (without bootstrap languages) | ||
command: pnpm run build-libs | ||
no_output_timeout: 30m | ||
- run: | ||
name: cargo clippy | ||
no_output_timeout: 30m | ||
command: cargo clippy --all --exclude ad4m-launcher | ||
- save_cache: | ||
key: rust-cache-{{ checksum "Cargo.lock" }}-v2 | ||
paths: | ||
|
@@ -77,10 +81,6 @@ jobs: | |
paths: | ||
- ./target/release/ad4m | ||
- ./target/release/ad4m-executor | ||
- run: | ||
name: cargo clippy | ||
no_output_timeout: 30m | ||
command: cargo clippy --all --exclude ad4m-launcher | ||
- run: | ||
name: Remove pnpm patches | ||
command: node removePnpm.js | ||
|
@@ -127,6 +127,9 @@ jobs: | |
keys: | ||
- p-diff-sync-socket-signaling-rust-cache-{{ checksum "bootstrap-languages/p-diff-sync-socket-signaling/hc-dna/Cargo.lock" }} | ||
- p-diff-sync-socket-signaling-rust-cache- | ||
- run: | ||
name: Install specific pnpm version | ||
command: npm install -g [email protected] | ||
- run: | ||
name: Install dependencies | ||
command: pnpm install --no-frozen-lockfile | ||
|