File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 52
52
~/.cargo/registry/cache/
53
53
~/.cargo/git/db/
54
54
target/
55
- key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
56
- restore-keys : ${{ runner.os }}-cargo-
55
+ key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}-${{ inputs.rust-version }}
56
+ restore-keys : ${{ runner.os }}-cargo-${{ inputs.rust-version }}
57
57
- run : cargo version
58
58
- name : Code Formatting
59
59
if : ${{ inputs.do-style-check }}
Original file line number Diff line number Diff line change 16
16
17
17
jobs :
18
18
build_multiboot2_msrv :
19
- name : " build (msrv)"
19
+ name : build (msrv)
20
20
uses : ./.github/workflows/_build-rust.yml
21
21
with :
22
22
rust-version : 1.56.1
23
23
do-style-check : false
24
24
25
25
build_multiboot2_stable :
26
- name : " build (stable)"
26
+ name : build (stable)
27
27
uses : ./.github/workflows/_build-rust.yml
28
28
with :
29
29
rust-version : stable
30
30
do-style-check : false
31
31
32
32
build_multiboot2_nightly :
33
- name : " build (nightly)"
33
+ name : build (nightly)
34
34
uses : ./.github/workflows/_build-rust.yml
35
35
with :
36
36
rust-version : nightly
37
37
do-style-check : false
38
38
39
39
build_nostd_multiboot2_msrv :
40
- name : " build no_std (msrv)"
40
+ name : build no_std (msrv)
41
41
uses : ./.github/workflows/_build-rust.yml
42
42
with :
43
43
rust-version : 1.56.1
44
44
do-style-check : false
45
45
rust-target : thumbv7em-none-eabihf
46
46
47
47
build_nostd_multiboot2_stable :
48
- name : " build no_std (stable)"
48
+ name : build no_std (stable)
49
49
uses : ./.github/workflows/_build-rust.yml
50
50
with :
51
51
rust-version : stable
52
52
do-style-check : false
53
53
rust-target : thumbv7em-none-eabihf
54
54
55
55
build_nostd_multiboot2_nightly :
56
- name : " build no_std (nightly)"
56
+ name : build no_std (nightly)
57
57
uses : ./.github/workflows/_build-rust.yml
58
58
with :
59
59
rust-version : nightly
60
60
do-style-check : false
61
61
rust-target : thumbv7em-none-eabihf
62
62
63
63
style_multiboot2_msrv :
64
- name : " style (msrv)"
64
+ name : style (msrv)
65
65
uses : ./.github/workflows/_build-rust.yml
66
66
with :
67
67
rust-version : 1.56.1
68
68
do-style-check : true
69
69
do-test : false
70
70
71
71
style_multiboot2_stable :
72
- name : " style (stable)"
72
+ name : style (stable)
73
73
uses : ./.github/workflows/_build-rust.yml
74
74
with :
75
75
rust-version : stable
You can’t perform that action at this time.
0 commit comments