Skip to content

Commit f67b539

Browse files
zhiqiangxutediou5
authored andcommitted
feat: move partition v2
1 parent f414380 commit f67b539

File tree

164 files changed

+9643
-8054
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

164 files changed

+9643
-8054
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99

1010
env:
1111
RUSTFLAGS: -Dwarnings
12+
CARGO_INCREMENTAL: 0 # Speeds up the build (no cache) and reduces disk space!
1213

1314
jobs:
1415
rustfmt:
@@ -32,11 +33,6 @@ jobs:
3233
steps:
3334
- name: Checking out
3435
uses: actions/checkout@v3
35-
- name: Setting up cache
36-
uses: pl-strflt/rust-sccache-action@v1
37-
env:
38-
SCCACHE_CACHE_SIZE: 2G
39-
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache
4036
- name: Running tests
4137
run: |
4238
cargo test --locked --all --no-fail-fast --exclude=fil_builtin_actors_bundle
@@ -49,12 +45,6 @@ jobs:
4945
steps:
5046
- name: Checking out
5147
uses: actions/checkout@v3
52-
- name: Setting up cache
53-
uses: pl-strflt/rust-sccache-action@v1
54-
env:
55-
SCCACHE_CACHE_SIZE: 2G
56-
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache
57-
CACHE_SKIP_SAVE: true
5848
- name: Writing bundle
5949
env:
6050
BUILD_FIL_NETWORK: ${{ matrix.network }}
@@ -67,17 +57,10 @@ jobs:
6757
steps:
6858
- name: Checking out
6959
uses: actions/checkout@v3
70-
- name: Setting up cache
71-
uses: pl-strflt/rust-sccache-action@v1
72-
env:
73-
SCCACHE_CACHE_SIZE: 2G
74-
SCCACHE_DIR: ${{ github.workspace }}/.cache/sccache
75-
with:
76-
shared-key: coverage
7760
- name: Put LLVM tools into the PATH
7861
run: echo "$(rustc --print sysroot)/lib/rustlib/x86_64-unknown-linux-gnu/bin" >> $GITHUB_PATH
7962
- name: Install demangler
80-
run: cargo install rustfilt
63+
run: sudo apt-get install -y rustfilt
8164
- name: Create coverage report
8265
env:
8366
# Make sure that each run of an executable creates a new profile file,

0 commit comments

Comments
 (0)