Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
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
Tornax O7
relibc
Commits
3be13d67
Verified
Commit
3be13d67
authored
5 years ago
by
jD91mZM2
Browse files
Options
Downloads
Patches
Plain Diff
Fix the GitLab CI for Redox OS (finally!)
parent
cfc54101
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
+21
-11
21 additions, 11 deletions
.gitlab-ci.yml
with
21 additions
and
11 deletions
.gitlab-ci.yml
+
21
−
11
View file @
3be13d67
...
...
@@ -10,9 +10,12 @@ before_script:
-
rustup target add x86_64-unknown-redox --toolchain "$(cat rust-toolchain)"
-
rustup show
# Print version info for debugging
# Cache caused some issues with a header not being generated:
# cache:
# untracked: true
cache
:
paths
:
-
target/
# Redox only:
-
prefix/
-
rust/
build:linux
:
stage
:
build
...
...
@@ -24,18 +27,25 @@ build:redox:
variables
:
TARGET
:
x86_64-unknown-redox
script
:
# Install
x86_64-unknown-redox-gcc
#
This can't be in before_script because that overrides
# the global before_script.
# Install
the Redox OS toolchain
#
# (
This can't be in before_script because that overrides
#
#
the global before_script.
)
-
apt-get update -qq
-
apt-get install -qq tar
-
rm -rf prefix
-
mkdir prefix
-
wget -O - https://static.redox-os.org/toolchain/x86_64-unknown-redox/gcc-install.tar.gz |
tar --extract --gzip --directory prefix
-
'
[
-e
"prefix"
]
||
(mkdir
prefix
&&
wget
-O
-
https://static.redox-os.org/toolchain/x86_64-unknown-redox/gcc-install.tar.gz
|
tar
--extract
--gzip
--directory
prefix)'
-
export PATH="$PWD/prefix/bin:$PATH"
-
export RUSTUP_TOOLCHAIN="$PWD/prefix"
# Prepare xargo
-
cargo install xargo
-
'
[
-e
"rust"
]
||
git
clone
-b
redox-2019-04-06
"https://gitlab.redox-os.org/redox-os/rust"
--recursive'
-
export CARGO=xargo
-
export XARGO_HOME="$PWD/build/xargo"
-
export XARGO_RUST_SRC="$PWD/rust/src"
# Main script
-
env PATH="${PWD}/prefix/bin:$PATH" make
all
-
make -j `nproc`
all
test:linux
:
stage
:
test
...
...
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