Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
5 changes: 5 additions & 0 deletions .github/workflows/benchmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,3 +115,8 @@ jobs:

- name: Check for performance regressions
run: node ci/github-actions/check-for-performance-regressions.js

- name: Clean workspace artifacts before cache
Comment thread
KSXGitHub marked this conversation as resolved.
continue-on-error: true
shell: bash
run: cargo clean --workspace
Comment thread
KSXGitHub marked this conversation as resolved.
5 changes: 5 additions & 0 deletions .github/workflows/clippy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,8 @@ jobs:
BUILD: 'false'
TEST: 'false'
run: ./test.sh

- name: Clean workspace artifacts before cache
Comment thread
KSXGitHub marked this conversation as resolved.
continue-on-error: true
shell: bash
run: cargo clean --workspace
Comment thread
KSXGitHub marked this conversation as resolved.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -616,3 +616,8 @@ jobs:
asset_path: ./tmp.benchmark-reports.tar.gz
asset_name: benchmark-reports.tar.gz
asset_content_type: application/x-compressed-tar

- name: Clean workspace artifacts before cache
Comment thread
KSXGitHub marked this conversation as resolved.
continue-on-error: true
shell: bash
run: cargo clean --workspace
Comment thread
KSXGitHub marked this conversation as resolved.
5 changes: 5 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,8 @@ jobs:
BUILD_FLAGS: '--locked'
TEST_FLAGS: '--no-fail-fast'
run: ./test.sh --release

- name: Clean workspace artifacts before cache
Comment thread
KSXGitHub marked this conversation as resolved.
continue-on-error: true
shell: bash
run: cargo clean --workspace
Comment thread
KSXGitHub marked this conversation as resolved.
Comment thread
KSXGitHub marked this conversation as resolved.
Loading