Commit c3d187e 1 parent d072be9 commit c3d187e Copy full SHA for c3d187e
File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change
1
+ # Run some workflows on ubuntu 22.04 because ubuntu-latest broke some system
2
+ # libs in late 2024
3
+
1
4
name : Rust
2
5
3
6
on :
38
41
- name : Check all-features
39
42
run : cargo check -p generic-ec --all-features
40
43
check-all :
41
- runs-on : ubuntu-latest
44
+ runs-on : ubuntu-22.04
42
45
steps :
43
46
- uses : actions/checkout@v3
44
47
- uses : Swatinem/rust-cache@v2
47
50
- name : Check everything
48
51
run : cargo check --all-targets
49
52
test :
50
- runs-on : ubuntu-latest
53
+ runs-on : ubuntu-22.04
51
54
steps :
52
55
- uses : actions/checkout@v3
53
56
- uses : Swatinem/rust-cache@v2
80
83
- name : Run clippy no-std
81
84
run : cargo clippy -p generic-ec --no-default-features -- -D clippy::all
82
85
clippy-tests :
83
- runs-on : ubuntu-latest
86
+ runs-on : ubuntu-22.04
84
87
steps :
85
88
- uses : actions/checkout@v3
86
89
- uses : Swatinem/rust-cache@v2
89
92
- name : Run clippy tests
90
93
run : cargo clippy --workspace --tests --all-features -- -D clippy::all
91
94
check-doc :
92
- runs-on : ubuntu-latest
95
+ runs-on : ubuntu-22.04
93
96
steps :
94
97
- uses : dtolnay/rust-toolchain@nightly
95
98
- uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments