Skip to content

Commit 996e338

Browse files
committed
Put experiment details (except dockerfile) in a script
1 parent 2f481fe commit 996e338

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

etc/docker/build-test-cross-s390x-image.sh

Lines changed: 0 additions & 2 deletions
This file was deleted.

etc/run-cross-experiment.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/sh
2+
set -ex
3+
4+
# Build the customized `cross` container image.
5+
docker build -t cross-rs-gitoxide/s390x-unknown-linux-gnu \
6+
- <etc/docker/Dockerfile.test-cross-s390x
7+
8+
# Clean files that could cause tests to wrongly pass or fail.
9+
cargo clean
10+
gix clean -xd -m '*generated*' -e
11+
12+
# Run the test suite.
13+
cross test --workspace --no-fail-fast --target s390x-unknown-linux-gnu \
14+
--no-default-features --features max-pure \
15+
-- --skip realpath::fuzzed_timeout

0 commit comments

Comments
 (0)