Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
redoxfs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anand Sundararaj
redoxfs
Commits
2ddf1dab
Verified
Commit
2ddf1dab
authored
5 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Update CI configuration to use redoxer
parent
8e38015b
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+10
-16
10 additions, 16 deletions
.gitlab-ci.yml
with
10 additions
and
16 deletions
.gitlab-ci.yml
+
10
−
16
View file @
2ddf1dab
image
:
"
redoxos/redox"
image
:
"
redoxos/redox
er
"
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
:
build:linux
:
stage
:
build
script
:
cargo +nightly build --verbose
build:redox:
cargo
:
build:redox
:
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
script
:
redoxer build --verbose
test:linux:
cargo
:
test:linux
:
stage
:
test
dependencies
:
-
build:linux:cargo
dependencies
:
build:linux
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
test:redox
:
stage
:
test
dependencies
:
test:redox
script
:
redoxer test --verbose
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment