redox/.gitlab-ci.yml
2018-06-09 19:31:59 -06:00

44 lines
1 KiB
YAML

variables:
GIT_STRATEGY: none
GIT_SUBMODULE_STRATEGY: none
before_script:
- |
apt-get update -qq &&
apt-get install -qq \
autopoint \
autoconf \
automake \
bison \
build-essential \
clang \
cmake \
curl \
flex \
fuse \
genisoimage \
git \
gnupg \
libfuse-dev \
nasm \
pkg-config \
software-properties-common \
syslinux \
texinfo \
wget &&
apt-key adv -q --batch --yes --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F &&
add-apt-repository 'deb https://static.redox-os.org/toolchain/apt ./' &&
apt-get update -qq &&
apt-get purge -qq binutils-doc &&
apt-get install -qq x86-64-unknown-redox-gcc &&
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain none
build:
script:
- |
git pull &&
git submodule update --init --recursive &&
source "$HOME/.cargo/env" &&
cargo install cargo-config xargo &&
make ci