-
Notifications
You must be signed in to change notification settings - Fork 382
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This uses the installs Docker from the official sources using the latest Ubuntu image stable, and installs the latest stable Rust version internally. Cross is installed from the latest git (locked), which when tagged will work well with our releases. It exports the environment variable `CROSS_CONTAINER_IN_CONTAINER` so everything should work as expected. Replaces #667.
- Loading branch information
1 parent
eb2b8ad
commit e449476
Showing
5 changed files
with
86 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
# shellcheck disable=SC2086 | ||
|
||
set -x | ||
set -eo pipefail | ||
|
||
if [[ -z "${TARGET}" ]]; then | ||
export TARGET="aarch64-unknown-linux-gnu" | ||
fi | ||
|
||
main() { | ||
docker run --rm -e TARGET \ | ||
-v /var/run/docker.sock:/var/run/docker.sock \ | ||
ghcr.io/cross-rs/cross:main sh -c ' | ||
#!/usr/bin/env sh | ||
td="$(mktemp -d)" | ||
git clone --depth 1 https://github.com/cross-rs/rust-cpp-hello-word "${td}" | ||
cd "${td}" | ||
cross run --target "${TARGET}" | ||
' | ||
} | ||
|
||
main "${@}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# we build our images in 2 steps, to ensure we have a compact | ||
# image, since we want to add our current subdirectory | ||
|
||
FROM ubuntu:20.04 as rust | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
COPY lib.sh cross.sh / | ||
RUN /cross.sh | ||
|
||
FROM ubuntu:20.04 | ||
COPY --from=rust /root/.cargo /root/.cargo | ||
COPY --from=rust /root/.rustup /root/.rustup | ||
|
||
# need some basic devtools, and requirements for docker | ||
RUN apt-get update && apt-get install --assume-yes --no-install-recommends \ | ||
ca-certificates \ | ||
curl \ | ||
git | ||
|
||
RUN curl -fsSL https://get.docker.com | sh | ||
|
||
ENV CROSS_CONTAINER_IN_CONTAINER=1 \ | ||
PATH=/root/.cargo/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
# shellcheck disable=SC1091 | ||
|
||
set -x | ||
set -euo pipefail | ||
|
||
. lib.sh | ||
|
||
main() { | ||
install_packages ca-certificates curl gcc libc6-dev | ||
|
||
# since we can't share outside the current docker context, | ||
# we need to install from git, rather than from path | ||
curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y | ||
source "$HOME"/.cargo/env | ||
cargo install cross --git https://github.com/cross-rs/cross --locked | ||
|
||
purge_packages | ||
|
||
rm -rf "${0}" | ||
} | ||
|
||
main "${@}" |