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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
bjorn3
redoxfs
Commits
f0450a45
Commit
f0450a45
authored
6 years ago
by
SamwiseFilmore
Committed by
Jeremy Soller
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Gitlab CI
parent
e9a7181e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+33
-0
33 additions, 0 deletions
.gitlab-ci.yml
with
33 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
33
−
0
View file @
f0450a45
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
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