@@ -27,7 +27,13 @@ concurrency:
2727jobs :
2828 test-x86 :
2929 name : Test (x86-64)
30- runs-on : runs-on,runner=64cpu-linux-x64,spot=false
30+ runs-on :
31+ [
32+ runs-on,
33+ runner=64cpu-linux-x64,
34+ spot=false,
35+ " run-id=${{ github.run_id }}" ,
36+ ]
3137 env :
3238 CARGO_NET_GIT_FETCH_WITH_CLI : " true"
3339 steps :
@@ -41,14 +47,14 @@ jobs:
4147 uses : actions-rs/cargo@v1
4248 with :
4349 command : check
44- toolchain : nightly-2024-04-17
50+ toolchain : 1.79.0
4551 args : --all-targets --all-features
4652
4753 - name : Run cargo test
4854 uses : actions-rs/cargo@v1
4955 with :
5056 command : test
51- toolchain : nightly-2024-04-17
57+ toolchain : 1.79.0
5258 args : --release --features native-gnark
5359 env :
5460 RUSTFLAGS : -Copt-level=3 -Cdebug-assertions -Coverflow-checks=y -Cdebuginfo=0 -C target-cpu=native
5864
5965 test-arm :
6066 name : Test (ARM)
61- runs-on : runs-on,runner=64cpu-linux-arm64,spot=false
67+ runs-on :
68+ [
69+ runs-on,
70+ runner=64cpu-linux-arm64,
71+ spot=false,
72+ " run-id=${{ github.run_id }}" ,
73+ ]
6274 env :
6375 CARGO_NET_GIT_FETCH_WITH_CLI : " true"
6476 steps :
@@ -72,14 +84,14 @@ jobs:
7284 uses : actions-rs/cargo@v1
7385 with :
7486 command : check
75- toolchain : nightly-2024-04-17
87+ toolchain : 1.79.0
7688 args : --all-targets --all-features
7789
7890 - name : Run cargo test
7991 uses : actions-rs/cargo@v1
8092 with :
8193 command : test
82- toolchain : nightly-2024-04-17
94+ toolchain : 1.79.0
8395 args : --release --features native-gnark
8496 env :
8597 RUSTFLAGS : -Copt-level=3 -Cdebug-assertions -Coverflow-checks=y -Cdebuginfo=0 -C target-cpu=native
89101
90102 lint :
91103 name : Formatting & Clippy
92- runs-on : runs-on,runner=8cpu-linux-x64
104+ runs-on : [ runs-on, runner=8cpu-linux-x64, "run-id=${{ github.run_id }}"]
93105 env :
94106 CARGO_NET_GIT_FETCH_WITH_CLI : " true"
95107 steps :
@@ -117,7 +129,7 @@ jobs:
117129
118130 examples :
119131 name : Examples
120- runs-on : runs-on,runner=8cpu-linux-x64
132+ runs-on : [ runs-on, runner=8cpu-linux-x64, "run-id=${{ github.run_id }}"]
121133 env :
122134 CARGO_NET_GIT_FETCH_WITH_CLI : " true"
123135 steps :
@@ -147,7 +159,7 @@ jobs:
147159
148160 cli :
149161 name : CLI
150- runs-on : runs-on,runner=8cpu-linux-x64
162+ runs-on : [ runs-on, runner=8cpu-linux-x64, "run-id=${{ github.run_id }}"]
151163 env :
152164 CARGO_NET_GIT_FETCH_WITH_CLI : " true"
153165 steps :
0 commit comments