Skip to content

Commit 9ac4424

Browse files
committed
Cache CI Docker images in ghcr registry
1 parent f2348fb commit 9ac4424

File tree

3 files changed

+55
-58
lines changed

3 files changed

+55
-58
lines changed

.github/workflows/ci.yml

+14-7
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ jobs:
4242
CI_JOB_NAME: "${{ matrix.name }}"
4343
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
4444
HEAD_SHA: "${{ github.event.pull_request.head.sha || github.sha }}"
45+
DOCKER_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
4546
SCCACHE_BUCKET: rust-lang-ci-sccache2
4647
TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
4748
CACHE_DOMAIN: ci-caches.rust-lang.org
@@ -59,9 +60,9 @@ jobs:
5960
- name: x86_64-gnu-llvm-16
6061
env:
6162
ENABLE_GCC_CODEGEN: "1"
62-
os: ubuntu-20.04-16core-64gb
63+
os: ubuntu-20.04
6364
- name: x86_64-gnu-tools
64-
os: ubuntu-20.04-16core-64gb
65+
os: ubuntu-20.04
6566
env: {}
6667
timeout-minutes: 600
6768
runs-on: "${{ matrix.os }}"
@@ -168,10 +169,13 @@ jobs:
168169
if: "success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')"
169170
auto:
170171
name: "auto - ${{ matrix.name }}"
172+
permissions:
173+
packages: write
171174
env:
172175
CI_JOB_NAME: "${{ matrix.name }}"
173176
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
174177
HEAD_SHA: "${{ github.event.pull_request.head.sha || github.sha }}"
178+
DOCKER_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
175179
SCCACHE_BUCKET: rust-lang-ci-sccache2
176180
DEPLOY_BUCKET: rust-lang-ci2
177181
TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
@@ -204,7 +208,7 @@ jobs:
204208
os: ubuntu-20.04-8core-32gb
205209
env: {}
206210
- name: dist-arm-linux
207-
os: ubuntu-20.04-16core-64gb
211+
os: ubuntu-20.04
208212
env: {}
209213
- name: dist-armhf-linux
210214
os: ubuntu-20.04-8core-32gb
@@ -251,12 +255,12 @@ jobs:
251255
- name: dist-x86_64-linux
252256
env:
253257
CODEGEN_BACKENDS: "llvm,cranelift"
254-
os: ubuntu-20.04-16core-64gb
258+
os: ubuntu-20.04
255259
- name: dist-x86_64-linux-alt
256260
env:
257261
IMAGE: dist-x86_64-linux
258262
CODEGEN_BACKENDS: "llvm,cranelift"
259-
os: ubuntu-20.04-16core-64gb
263+
os: ubuntu-20.04
260264
- name: dist-x86_64-musl
261265
env:
262266
CODEGEN_BACKENDS: "llvm,cranelift"
@@ -291,7 +295,7 @@ jobs:
291295
- name: x86_64-gnu-integration
292296
env:
293297
CI_ONLY_WHEN_CHANNEL: nightly
294-
os: ubuntu-20.04-16core-64gb
298+
os: ubuntu-20.04
295299
- name: x86_64-gnu-debug
296300
os: ubuntu-20.04-8core-32gb
297301
env: {}
@@ -561,11 +565,14 @@ jobs:
561565
if: "success() && !env.SKIP_JOB && (github.event_name == 'push' || env.DEPLOY == '1' || env.DEPLOY_ALT == '1')"
562566
try:
563567
name: "try - ${{ matrix.name }}"
568+
permissions:
569+
packages: write
564570
env:
565571
DIST_TRY_BUILD: 1
566572
CI_JOB_NAME: "${{ matrix.name }}"
567573
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
568574
HEAD_SHA: "${{ github.event.pull_request.head.sha || github.sha }}"
575+
DOCKER_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
569576
SCCACHE_BUCKET: rust-lang-ci-sccache2
570577
DEPLOY_BUCKET: rust-lang-ci2
571578
TOOLSTATE_REPO: "https://github.com/rust-lang-nursery/rust-toolstate"
@@ -582,7 +589,7 @@ jobs:
582589
- name: dist-x86_64-linux
583590
env:
584591
CODEGEN_BACKENDS: "llvm,cranelift"
585-
os: ubuntu-20.04-16core-64gb
592+
os: ubuntu-20.04
586593
timeout-minutes: 600
587594
runs-on: "${{ matrix.os }}"
588595
steps:

src/ci/docker/run.sh

+35-50
Original file line numberDiff line numberDiff line change
@@ -74,25 +74,6 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
7474

7575
cksum=$(sha512sum $hash_key | \
7676
awk '{print $1}')
77-
78-
url="https://$CACHE_DOMAIN/docker/$cksum"
79-
80-
echo "Attempting to download $url"
81-
rm -f /tmp/rustci_docker_cache
82-
set +e
83-
retry curl --max-time 600 -y 30 -Y 10 --connect-timeout 30 -f -L -C - \
84-
-o /tmp/rustci_docker_cache "$url"
85-
86-
docker_archive_hash=$(sha512sum /tmp/rustci_docker_cache | awk '{print $1}')
87-
echo "Downloaded archive hash: ${docker_archive_hash}"
88-
89-
echo "Loading images into docker"
90-
# docker load sometimes hangs in the CI, so time out after 10 minutes with TERM,
91-
# KILL after 12 minutes
92-
loaded_images=$(/usr/bin/timeout -k 720 600 docker load -i /tmp/rustci_docker_cache \
93-
| sed 's/.* sha/sha/')
94-
set -e
95-
printf "Downloaded containers:\n$loaded_images\n"
9677
fi
9778

9879
dockerfile="$docker_dir/$image/Dockerfile"
@@ -103,44 +84,48 @@ if [ -f "$docker_dir/$image/Dockerfile" ]; then
10384
context="$script_dir"
10485
fi
10586
echo "::group::Building docker image for $image"
106-
107-
# As of August 2023, Github Actions have updated Docker to 23.X,
108-
# which uses the BuildKit by default. It currently throws aways all
109-
# intermediate layers, which breaks our usage of S3 layer caching.
110-
# Therefore we opt-in to the old build backend for now.
111-
export DOCKER_BUILDKIT=0
112-
retry docker \
113-
build \
114-
--rm \
115-
-t rust-ci \
116-
-f "$dockerfile" \
117-
"$context"
87+
echo "Image checksum ${cksum}"
88+
89+
# On PR jobs, we don't have permissions to write to the cache, so we should not use
90+
# `docker login` nor caching.
91+
if [ "$PR_CI_JOB" -eq 1 ]
92+
then
93+
docker pull ghcr.io/rust-lang-ci/rust-ci:e933e07d88a3a99bf4260cfb60899ada91f8df72a6588179fcf65ebe7ce824675eb8f2c985515ca3c51f2d0f5c006cb1d9e2fa66af562cdc91537385af559d59
94+
# docker buildx create --use --driver docker-container
95+
# retry docker buildx build --rm -t rust-ci \
96+
# --output=type=docker \
97+
# --cache-from type=registry,ref=ghcr.io/rust-lang-ci/rust-ci:${cksum} \
98+
# -f "$dockerfile" "$context"
99+
else
100+
docker pull ghcr.io/rust-lang-ci/rust-ci:e933e07d88a3a99bf4260cfb60899ada91f8df72a6588179fcf65ebe7ce824675eb8f2c985515ca3c51f2d0f5c006cb1d9e2fa66af562cdc91537385af559d59
101+
102+
docker buildx create --use --driver docker-container
103+
104+
# Login to Docker registry
105+
echo ${DOCKER_TOKEN} | docker login ghcr.io --username rust-lang-ci --password-stdin
106+
107+
dest="type=registry,ref=ghcr.io/rust-lang-ci/rust-ci:${cksum},compression=zstd,mode=max"
108+
109+
retry docker \
110+
buildx \
111+
build \
112+
--rm \
113+
-t rust-ci \
114+
-f "$dockerfile" \
115+
--cache-from type=registry,ref=ghcr.io/rust-lang-ci/rust-ci:${cksum} \
116+
--cache-to ${dest} \
117+
--output=type=docker \
118+
"$context"
119+
docker manifest inspect rust-ci
120+
fi
118121
echo "::endgroup::"
119122

120123
if [ "$CI" != "" ]; then
121-
s3url="s3://$SCCACHE_BUCKET/docker/$cksum"
122-
upload="aws s3 cp - $s3url"
123124
digest=$(docker inspect rust-ci --format '{{.Id}}')
124-
echo "Built container $digest"
125-
if ! grep -q "$digest" <(echo "$loaded_images"); then
126-
echo "Uploading finished image $digest to $url"
127-
set +e
128-
# Print image history for easier debugging of layer SHAs
129-
docker history rust-ci
130-
docker history -q rust-ci | \
131-
grep -v missing | \
132-
xargs docker save | \
133-
gzip | \
134-
$upload
135-
set -e
136-
else
137-
echo "Looks like docker image is the same as before, not uploading"
138-
fi
139125
# Record the container image for reuse, e.g. by rustup.rs builds
140126
info="$dist/image-$image.txt"
141127
mkdir -p "$dist"
142-
echo "$url" >"$info"
143-
echo "$digest" >>"$info"
128+
echo "${cksum}" > "$info"
144129
cat "$info"
145130
fi
146131
elif [ -f "$docker_dir/disabled/$image/Dockerfile" ]; then

src/ci/github-actions/ci.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ x--expand-yaml-anchors--remove:
3434
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
3535
# commit of PR sha or commit sha. `GITHUB_SHA` is not accurate for PRs.
3636
HEAD_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
37+
DOCKER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3738

3839
- &public-variables
3940
SCCACHE_BUCKET: rust-lang-ci-sccache2
@@ -84,7 +85,7 @@ x--expand-yaml-anchors--remove:
8485
<<: *base-job
8586

8687
- &job-linux-16c
87-
os: ubuntu-20.04-16core-64gb
88+
os: ubuntu-20.04
8889
<<: *base-job
8990

9091
- &job-macos-xl
@@ -345,6 +346,8 @@ jobs:
345346
auto:
346347
<<: *base-ci-job
347348
name: auto - ${{ matrix.name }}
349+
permissions:
350+
packages: write
348351
env:
349352
<<: [*shared-ci-variables, *prod-variables]
350353
if: github.event_name == 'push' && github.ref == 'refs/heads/auto' && github.repository == 'rust-lang-ci/rust'
@@ -725,6 +728,8 @@ jobs:
725728
try:
726729
<<: *base-ci-job
727730
name: try - ${{ matrix.name }}
731+
permissions:
732+
packages: write
728733
env:
729734
DIST_TRY_BUILD: 1
730735
<<: [*shared-ci-variables, *prod-variables]

0 commit comments

Comments
 (0)