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
0b05b2a8
Commit
0b05b2a8
authored
7 years ago
by
Marco A L Barbosa
Browse files
Options
Downloads
Patches
Plain Diff
Enable kvm in docker images if available
parent
05a2d197
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
ci/run-docker.sh
+4
-0
4 additions, 0 deletions
ci/run-docker.sh
ci/run.sh
+5
-1
5 additions, 1 deletion
ci/run.sh
with
9 additions
and
1 deletion
ci/run-docker.sh
+
4
−
0
View file @
0b05b2a8
...
...
@@ -8,10 +8,14 @@ run() {
# use -f so we can use ci/ as build context
docker build
-t
libc
-f
ci/docker/
$1
/Dockerfile ci/
mkdir
-p
target
if
[
-w
/dev/kvm
]
;
then
kvm
=
"--volume /dev/kvm:/dev/kvm"
fi
docker run
\
--user
`
id
-u
`
:
`
id
-g
`
\
--rm
\
--volume
$HOME
/.cargo:/cargo
\
$kvm
\
--env
CARGO_HOME
=
/cargo
\
--volume
`
rustc
--print
sysroot
`
:/rust:ro
\
--volume
`
pwd
`
:/checkout:ro
\
...
...
This diff is collapsed.
Click to expand it.
ci/run.sh
+
5
−
1
View file @
0b05b2a8
...
...
@@ -111,7 +111,11 @@ case "$TARGET" in
# https://issues.jenkins-ci.org/browse/JENKINS-26930?focusedCommentId=230791&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-230791
export
SHELL
=
/bin/dash
arch
=
$(
echo
$TARGET
|
cut
-d-
-f1
)
emulator @
$arch
-no-window
-no-accel
&
accel
=
"-no-accel"
if
emulator
-accel-check
;
then
accel
=
""
fi
emulator @
$arch
-no-window
$accel
&
adb wait-for-device
adb push
$CARGO_TARGET_DIR
/
$TARGET
/debug/libc-test /data/local/tmp/libc-test
adb shell /data/local/tmp/libc-test 2>&1 |
tee
/tmp/out
...
...
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