self-ci/rust
Travis Burtrum 9fa6cca726
moparisthebest/self-ci/pipeline/head Something is wrong with the build of this commit Details
Add self-ci-rust
2020-11-22 01:23:32 -05:00
..
Dockerfile Add self-ci-rust 2020-11-22 01:23:32 -05:00
build.sh Add self-ci-rust 2020-11-22 01:23:32 -05:00
readme.md Add self-ci-rust 2020-11-22 01:23:32 -05:00

readme.md

self-ci-rust

A docker container with rustup and cross that runs a script with every variant cross supports.

Meant to be ran in CI something like this:

docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD:/build" -e BRANCH_NAME -e BUILD_UID=$UID -e BUILD_GID=$(id -g) moparisthebest/self-ci-rust:latest

Without arguments it will execute .jenkins/build.sh once for each docker container cross supports, setting the env variables TARGET and DISABLE_TESTS appropriately so invocations of cross and cargo just work. If you want to call another script each time:

docker run --rm -v /var/run/docker.sock:/var/run/docker.sock -v "$PWD:/build" -e BRANCH_NAME -e BUILD_UID=$UID -e BUILD_GID=$(id -g) moparisthebest/self-ci-rust:latest build.sh ./path/to/your/script.sh