summaryrefslogtreecommitdiffstats
path: root/third_party/rust/libc/ci/run-qemu.sh
diff options
context:
space:
mode:
authorMoonchild <mcwerewolf@gmail.com>2018-03-13 14:55:45 +0100
committerGitHub <noreply@github.com>2018-03-13 14:55:45 +0100
commit5462c415744a64899dcd344dee42075f9154741b (patch)
treebbbb7df9a9f18c5fd3caf406d7f5bc9e13168d1f /third_party/rust/libc/ci/run-qemu.sh
parent90e68c3e3f4bb2f1a427a01586981e62bf74b898 (diff)
parent38d185280e2cad4ed6673bb38f707f54dad4ded7 (diff)
downloadUXP-5462c415744a64899dcd344dee42075f9154741b.tar
UXP-5462c415744a64899dcd344dee42075f9154741b.tar.gz
UXP-5462c415744a64899dcd344dee42075f9154741b.tar.lz
UXP-5462c415744a64899dcd344dee42075f9154741b.tar.xz
UXP-5462c415744a64899dcd344dee42075f9154741b.zip
Merge pull request #59 from MoonchildProductions/Evapo-Rust
Remove all rust components and libs.
Diffstat (limited to 'third_party/rust/libc/ci/run-qemu.sh')
-rw-r--r--third_party/rust/libc/ci/run-qemu.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/third_party/rust/libc/ci/run-qemu.sh b/third_party/rust/libc/ci/run-qemu.sh
deleted file mode 100644
index 70f312e3b..000000000
--- a/third_party/rust/libc/ci/run-qemu.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-# Initial script which is run inside of all qemu images. The first argument to
-# this script (as arranged by the qemu image itself) is the path to where the
-# libc crate is mounted.
-#
-# For qemu images we currently need to install Rust manually as this wasn't done
-# by the initial run-travis.sh script
-#
-# FIXME: feels like run-travis.sh should be responsible for downloading the
-# compiler.
-
-set -ex
-
-ROOT=$1
-cp -r $ROOT/libc /tmp/libc
-cd /tmp/libc
-
-TARGET=$(cat $ROOT/TARGET)
-export CARGO_TARGET_DIR=/tmp
-
-case $TARGET in
- *-openbsd)
- pkg_add rust curl gcc-4.8.4p4
- curl https://static.rust-lang.org/cargo-dist/2015-04-02/cargo-nightly-x86_64-unknown-openbsd.tar.gz | \
- tar xzf - -C /tmp
- export PATH=$PATH:/tmp/cargo-nightly-x86_64-unknown-openbsd/cargo/bin
- export CC=egcc
- ;;
-
- *)
- echo "Unknown target: $TARGET"
- exit 1
- ;;
-esac
-
-exec sh ci/run.sh $TARGET