mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
13 lines
232 B
Bash
13 lines
232 B
Bash
#!/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
|