Skip to content
Snippets Groups Projects
Commit c2fa2818 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy
Browse files

Add Redox to GitLab CI

parent ddee48f9
No related branches found
No related tags found
1 merge request!823Add Redox to GitLab CI
...@@ -4,7 +4,22 @@ before_script: ...@@ -4,7 +4,22 @@ before_script:
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly - curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source "$HOME/.cargo/env" - source "$HOME/.cargo/env"
nightly: linux-nightly:
script: script:
- cargo build - cargo build
- make tests - make tests
redox-nightly:
variables:
CC: "x86_64-unknown-redox-gcc"
before_script:
- apt-get update -qq
- apt-get install -qq build-essential curl git gnupg software-properties-common
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AA12E97F0881517F
- add-apt-repository 'deb https://static.redox-os.org/toolchain/apt /'
- apt-get update -qq && apt-get install -qq x86-64-unknown-redox-gcc
- curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
- source "$HOME/.cargo/env"
- rustup target add x86_64-unknown-redox
script:
- cargo build --target x86_64-unknown-redox
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment