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
c11f0fca
Unverified
Commit
c11f0fca
authored
4 years ago
by
Yuki Okushi
Browse files
Options
Downloads
Patches
Plain Diff
Remove unused `run-qemu.sh`
parent
1ef129b2
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/run-qemu.sh
+0
-34
0 additions, 34 deletions
ci/run-qemu.sh
with
0 additions
and
34 deletions
ci/run-qemu.sh
deleted
100644 → 0
+
0
−
34
View file @
1ef129b2
#!/usr/bin/env sh
# Initial script which is run inside of all qemu images. The first argument to
# this script (as arranged by the qemu image itself) is the path to where the
# libc crate is mounted.
#
# For qemu images we currently need to install Rust manually as this wasn't done
# by the initial run-travis.sh script
#
# FIXME: feels like run-travis.sh should be responsible for downloading the
# compiler.
set
-ex
ROOT
=
"
${
1
}
"
cp
-r
"
${
ROOT
}
/libc"
/tmp/libc
cd
/tmp/libc
TARGET
=
"
$(
cat
"
${
ROOT
}
/TARGET"
)
"
export
CARGO_TARGET_DIR
=
/tmp
case
$TARGET
in
*
-openbsd
)
pkg_add cargo gcc%4.9 rust
export
CC
=
egcc
;;
*
)
echo
"Unknown target:
${
TARGET
}
"
exit
1
;;
esac
exec
sh ci/run.sh
"
${
TARGET
}
"
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