2018-06-10 02:04:59 +02:00
|
|
|
variables:
|
|
|
|
GIT_STRATEGY: fetch
|
|
|
|
GIT_SUBMODULE_STRATEGY: recursive
|
|
|
|
|
2018-06-10 01:11:01 +02:00
|
|
|
before_script:
|
|
|
|
- |
|
2018-06-10 01:58:24 +02:00
|
|
|
apt-get update -qq &&
|
2018-06-10 02:02:43 +02:00
|
|
|
apt-get install -qq build-essential fuse genisoimage gnupg libfuse-dev nasm pkg-config software-properties-common syslinux &&
|
2018-06-10 01:28:57 +02:00
|
|
|
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 &&
|
2018-06-10 01:48:19 +02:00
|
|
|
apt-get install -qq x86-64-unknown-redox-gcc &&
|
2018-06-10 01:28:57 +02:00
|
|
|
modprobe fuse &&
|
|
|
|
chmod 666 /dev/fuse &&
|
|
|
|
chown root:$USER /etc/fuse.conf &&
|
2018-06-10 01:11:01 +02:00
|
|
|
curl https://sh.rustup.rs -sSf | sh
|
|
|
|
|
|
|
|
build:
|
|
|
|
script:
|
|
|
|
- make ci
|