forked from polkadot-evm/frontier
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a485b31
commit 79dc562
Showing
1 changed file
with
20 additions
and
20 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 |
---|---|---|
|
@@ -21,32 +21,32 @@ jobs: | |
# The build artifacts generated by Polkadot projects are already large | ||
# and even larger when using llvm-cov. This GH task helps removing some large | ||
# files on the host and maximizing disk space(https://github.com/easimon/maximize-build-space) | ||
- name: Maximize build space | ||
uses: easimon/maximize-build-space@master | ||
with: | ||
remove-dotnet: 'true' | ||
remove-android: 'true' | ||
remove-haskell: 'true' | ||
# - name: Maximize build space | ||
# uses: easimon/maximize-build-space@master | ||
# with: | ||
# remove-dotnet: 'true' | ||
# remove-android: 'true' | ||
# remove-haskell: 'true' | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
# - name: Cache cargo registry & git sources | ||
# uses: actions/cache@v4 | ||
# with: | ||
# path: | | ||
# ~/.cargo/bin/ | ||
# ~/.cargo/registry/ | ||
# ~/.cargo/git/db/ | ||
# key: ${{ runner.os }}-cargo-unittest-${{ hashFiles('**/Cargo.lock') }} | ||
# restore-keys: | | ||
# ${{ runner.os }}-cargo-unittest-${{ hashFiles('**/Cargo.lock') }} | ||
# ${{ runner.os }}-cargo-unittest- | ||
# ${{ runner.os }}-cargo- | ||
- name: Cache cargo registry & git sources | ||
uses: actions/cache@v4 | ||
with: | ||
path: | | ||
~/.cargo/bin/ | ||
~/.cargo/registry/ | ||
~/.cargo/git/db/ | ||
key: ${{ runner.os }}-cargo-unittest-${{ hashFiles('**/Cargo.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-cargo-unittest-${{ hashFiles('**/Cargo.lock') }} | ||
${{ runner.os }}-cargo-unittest- | ||
${{ runner.os }}-cargo- | ||
# - name: Run sccache | ||
# uses: mozilla-actions/[email protected] | ||
- name: Run sccache | ||
uses: mozilla-actions/[email protected] | ||
|
||
- name: Install stable | ||
uses: dtolnay/rust-toolchain@stable | ||
|