Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Robin Randhawa
redoxfs
Commits
3906a90a
Commit
3906a90a
authored
Jul 02, 2018
by
Jeremy Soller
Browse files
Merge branch 'mggmuggins/ci' into 'master'
Gitlab CI See merge request
redox-os/redoxfs!37
parents
e9a7181e
f0450a45
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
3906a90a
image
:
"
redoxos/redox"
stages
:
-
build
-
test
before_script
:
-
rustup target add x86_64-unknown-redox --toolchain nightly
-
rustup show
# Print version info for debugging
cache
:
paths
:
-
target/
build:linux:cargo:
stage
:
build
script
:
cargo +nightly build --verbose
build:redox:cargo:
stage
:
build
script
:
-
mkdir .cargo
-
echo -e "[target.x86_64-unknown-redox]\nlinker = \"x86_64-unknown-redox-gcc\"" > .cargo/config
-
cargo +nightly build --verbose --target x86_64-unknown-redox
test:linux:cargo:
stage
:
test
dependencies
:
-
build:linux:cargo
script
:
cargo +nightly test --verbose
# TODO: Set up a docker image with a redox vm that would allow to
# run things like tests under redox
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment