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
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
Peter Limkilde Svendsen
relibc
Commits
30ec8aa2
Verified
Commit
30ec8aa2
authored
6 years ago
by
jD91mZM2
Browse files
Options
Downloads
Patches
Plain Diff
Add redox to CI
parent
07dbc6bd
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+19
-5
19 additions, 5 deletions
.gitlab-ci.yml
tests/expected/wchar/mbrtowc.stdout
+1
-1
1 addition, 1 deletion
tests/expected/wchar/mbrtowc.stdout
with
20 additions
and
6 deletions
.gitlab-ci.yml
+
19
−
5
View file @
30ec8aa2
...
...
@@ -6,7 +6,8 @@ stages:
before_script
:
-
git submodule update --init --recursive
-
rustup target add x86_64-unknown-redox --toolchain nightly
-
rustup toolchain add "$(cat rust-toolchain)"
-
rustup target add x86_64-unknown-redox --toolchain "$(cat rust-toolchain)"
-
rustup show
# Print version info for debugging
cache
:
...
...
@@ -17,10 +18,22 @@ build:linux:
script
:
-
make all
#build:redox:
# stage: build
# script:
# - make all
build:redox
:
stage
:
build
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.
-
apt-get update -qq
-
apt-get install -qq apt-transport-https 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
# Main script
-
make all
test:linux
:
stage
:
test
...
...
@@ -28,6 +41,7 @@ test:linux:
-
build:linux
script
:
-
make test
-
cd tests && make verify
fmt
:
stage
:
test
...
...
This diff is collapsed.
Click to expand it.
tests/expected/wchar/mbrtowc.stdout
+
1
−
1
View file @
30ec8aa2
Processing 11 UTF-8 code units: [ 7a c3 9f e6 b0 b4 f0 9f 8d 8c 0 ]
into 5 wchar_t units: [ 7a df 6c34 1f34c 0 ]
\ No newline at end of file
into 5 wchar_t units: [ 7a df 6c34 1f34c 0 ]
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