Skip to content

Commit d0d0ee0

Browse files
committed
ci: stop producing gzip-compressed dist tarballs
1 parent 0a2034d commit d0d0ee0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ci/run.sh

+5
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-locked-deps"
5353
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-cargo-native-static"
5454
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set rust.codegen-units-std=1"
5555

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+
5661
if [ "$DIST_SRC" = "" ]; then
5762
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-dist-src"
5863
fi

0 commit comments

Comments
 (0)