summaryrefslogtreecommitdiffstats
path: root/testing/docker/rust-build/package_rust.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/docker/rust-build/package_rust.sh')
-rw-r--r--testing/docker/rust-build/package_rust.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/testing/docker/rust-build/package_rust.sh b/testing/docker/rust-build/package_rust.sh
new file mode 100644
index 000000000..743aec2fb
--- /dev/null
+++ b/testing/docker/rust-build/package_rust.sh
@@ -0,0 +1,13 @@
+#!/bin/bash -vex
+
+set -x -e
+
+: WORKSPACE ${WORKSPACE:=/home/worker}
+
+set -v
+
+# Package the toolchain for upload.
+pushd ${WORKSPACE}
+tar cvJf rustc.tar.xz rustc/*
+/build/tooltool.py add --visibility=public --unpack rustc.tar.xz
+popd