File tree Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Expand file tree Collapse file tree 1 file changed +2
-15
lines changed Original file line number Diff line number Diff line change @@ -26,40 +26,27 @@ jobs:
26
26
27
27
strategy :
28
28
matrix :
29
- rust-branch :
30
- - nightly-2024-03-05
31
29
rust-target :
32
30
- x86_64-unknown-linux-gnu
33
31
os :
34
32
- ubuntu-latest
35
33
include :
36
34
- os : ubuntu-latest
37
35
env :
38
- RELEASE_NAME : development
39
- RUSTV : ${{ matrix.rust-branch }}
40
36
RUST_BACKTRACE : full
41
- RUST_BIN_DIR : target/${{ matrix.rust-target }}
42
- TARGET : ${{ matrix.rust-target }}
43
37
steps :
44
38
- name : Check-out repository under $GITHUB_WORKSPACE
45
- uses : actions/checkout@v2
39
+ uses : actions/checkout@v4
46
40
47
41
- name : Install dependencies
48
42
run : |
49
43
sudo apt-get update &&
50
44
sudo apt-get install -y clang curl libssl-dev llvm libudev-dev protobuf-compiler
51
45
52
- - name : Install Rust ${{ matrix.rust-branch }}
53
- uses :
actions-rs/[email protected]
54
- with :
55
- toolchain : ${{ matrix.rust-branch }}
56
- components : rustfmt, clippy
57
- profile : minimal
58
-
59
46
- name : Utilize Shared Rust Cache
60
47
61
48
with :
62
- key : ${{ matrix.os }}-${{ env.RUST_BIN_DIR }}
49
+ key : ubuntu-latest-target/x86_64-unknown-linux-gnu
63
50
64
51
- name : Build chainspecs
65
52
run : ./scripts/build_all_chainspecs.sh
You can’t perform that action at this time.
0 commit comments