We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a2034d commit d0d0ee0Copy full SHA for d0d0ee0
src/ci/run.sh
@@ -53,6 +53,11 @@ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
53
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
54
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
55
56
+# Only produce xz tarballs on CI. gz tarballs will be generated by the release
57
+# process by recompressing the existing xz ones. This decreases the storage
58
+# space required for CI artifacts.
59
+RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --dist-compression-formats=xz"
60
+
61
if [ "$DIST_SRC" = "" ]; then
62
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
63
fi
0 commit comments