File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 56
56
"./tools/devtool -y test --no-build -- ../tests/integration_tests/test_kani.py -n auto" ,
57
57
# Kani step default
58
58
# Kani runs fastest on m6a.metal
59
- instances = ["m6a.metal" ],
59
+ instances = ["m6a.metal" , "m7g.metal" ],
60
60
platforms = [("al2" , "linux_5.10" )],
61
61
timeout_in_minutes = 300 ,
62
62
** DEFAULTS_PERF ,
Original file line number Diff line number Diff line change 17
17
# The `check_output` timeout will always fire before this one, but we need to
18
18
# set a timeout here to override the default pytest timeout of 180s.
19
19
@pytest .mark .timeout (2420 )
20
- @pytest .mark .skipif (PLATFORM != "x86_64" , reason = "Kani proofs run only on x86_64." )
21
20
@pytest .mark .skipif (
22
21
os .environ .get ("BUILDKITE" ) != "true" ,
23
22
reason = "Kani's memory requirements likely cannot be satisfied locally" ,
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --profile minimal --default-too
108
108
&& rustup target add aarch64-unknown-linux-musl \
109
109
&& rustup component add llvm-tools-preview clippy rustfmt \
110
110
&& cargo install --locked cargo-audit cargo-deny grcov cargo-sort cargo-afl \
111
- && (if [ "$ARCH" = "x86_64" ]; then cargo install --locked kani-verifier && cargo kani setup; else true; fi) \
111
+ && cargo install --locked kani-verifier && cargo kani setup \
112
112
\
113
113
&& apt-get update \
114
114
&& apt-get -y install --no-install-recommends \
You can’t perform that action at this time.
0 commit comments