Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
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
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
145ac09c
Commit
145ac09c
authored
9 years ago
by
Alex Crichton
Browse files
Options
Downloads
Patches
Plain Diff
Describe CI processes
parent
d86471cb
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ci/README.md
+35
-0
35 additions, 0 deletions
ci/README.md
with
35 additions
and
0 deletions
ci/README.md
+
35
−
0
View file @
145ac09c
...
...
@@ -4,6 +4,8 @@ result the CI is pretty complicated and also pretty large! Hopefully this can
serve as a guide through the sea of scripts in this directory and elsewhere in
this project.
# Files
First up, let's talk about the files in this directory:
*
`Dockerfile-android`
,
`android-accept-licenses.sh`
-- these two files are
...
...
@@ -43,3 +45,36 @@ First up, let's talk about the files in this directory:
*
`landing-page-*.html`
- used by
`dox.sh`
to generate a landing page for all
architectures' documentation.
# CI Systems
Currently this repository leverages a combination of Travis CI and AppVeyor for
running tests. The triples tested are:
*
AppVeyor
*
`{i686,x86_64}-pc-windows-{msvc,gnu}`
*
Travis
*
`{i686,x86_64,mips,aarch64}-unknown-linux-gnu`
*
`x86_64-unknown-linux-musl`
*
`arm-unknown-linux-gnueabihf`
*
`arm-linux-androideabi`
*
`{i686,x86_64}-apple-darwin`
The Windows triples are all pretty standard, they just set up their environment
then run tests, no need for downloading any extra target libs (we just download
the right installer). The Intel Linux/OSX builds are similar in that we just
download the right target libs and run tests. Note that the Intel Linux/OSX
builds are run on stable/beta/nightly, but are the only ones that do so.
The remaining architectures look like:
*
Android runs in a docker image with an emulator, the NDK, and the SDK already
set up (see
`Dockerfile-android`
). The entire build happens within the docker
image.
*
The MIPS, ARM, and AArch64 builds all use QEMU to run the generated binary to
actually verify the tests pass.
*
The MUSL build just has to download a MUSL compiler and target libraries and
then otherwise runs tests normally.
Hopefully that's at least somewhat of an introduction to everything going on
here, and feel free to ping @alexcrichton with questions!
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