We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14d33fc commit ff68cb9Copy full SHA for ff68cb9
etc/docker/build-test-cross-s390x-image.sh
etc/run-cross-experiment.sh
@@ -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