-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move free disk space step up to run first
- Loading branch information
Showing
1 changed file
with
13 additions
and
13 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 |
---|---|---|
|
@@ -17,9 +17,20 @@ jobs: | |
rust_version: "${RUST_VERSION}" | ||
fail-fast: false | ||
steps: | ||
- name: Free Disk Space (Ubuntu only) | ||
if: runner.os == 'Linux' && matrix.platform == 'ubuntu-latest' | ||
uses: jlumbroso/[email protected] | ||
with: | ||
tool-cache: false | ||
android: true | ||
dotnet: true | ||
haskell: true | ||
large-packages: false | ||
docker-images: false | ||
swap-storage: true | ||
|
||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
|
||
- name: Cache | ||
uses: ./.github/actions/cache | ||
with: | ||
|
@@ -37,17 +48,6 @@ jobs: | |
- name: "Remove nextest CI report" | ||
shell: bash | ||
run: rm -rf target/nextest/ci/junit.xml | ||
- name: Free Disk Space (Ubuntu only) | ||
if: runner.os == 'Linux' && matrix.platform == 'ubuntu-latest' | ||
uses: jlumbroso/[email protected] | ||
with: | ||
tool-cache: false | ||
android: true | ||
dotnet: true | ||
haskell: true | ||
large-packages: false | ||
docker-images: false | ||
swap-storage: true | ||
- name: "[${{ steps.rust-version.outputs.version}}] cargo build --workspace --verbose" | ||
run: cargo build --workspace --verbose | ||
- name: "[${{ steps.rust-version.outputs.version}}] cargo nextest run --workspace --profile ci --verbose -E '!test(tracing_integration_tests::)'" | ||
|
@@ -240,4 +240,4 @@ jobs: | |
targets: ${{ matrix.target }} | ||
set: | | ||
*.cache-from=type=gha,scope=${{ matrix.target }} | ||
*.cache-to=type=gha,mode=max,scope=${{ matrix.target }} | ||
*.cache-to=type=gha,mode=max,scope=${{ matrix.target }} |