Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ jobs:
with:
shared-key: arm64-ci-v2
- name: Purge stale build artifacts
run: rm -rf target/
run: |
rm -rf target/
rm -rf ~/.cargo/registry/src/aws-lc-sys-*
- run: cargo check

clippy:
Expand All @@ -87,7 +89,9 @@ jobs:
with:
shared-key: arm64-ci-v2
- name: Purge stale build artifacts
run: rm -rf target/
run: |
rm -rf target/
rm -rf ~/.cargo/registry/src/aws-lc-sys-*
- run: cargo clippy -- -D warnings

fmt:
Expand All @@ -110,7 +114,9 @@ jobs:
with:
shared-key: arm64-ci-v2
- name: Purge stale build artifacts
run: rm -rf target/
run: |
rm -rf target/
rm -rf ~/.cargo/registry/src/aws-lc-sys-*
- run: cargo test

integration-test:
Expand Down Expand Up @@ -138,7 +144,9 @@ jobs:
shared-key: integration-test
cache-all-crates: "true"
- name: Purge stale build artifacts
run: rm -rf target/
run: |
rm -rf target/
rm -rf ~/.cargo/registry/src/aws-lc-sys-*
- name: Build dk binary
run: cargo build --release
- name: Wait for dakera server
Expand Down