Skip to content

Commit 8c38e0f

Browse files
Use GitHub-hosted aarch64 runners (#2202)
* Use GitHub-hosted aarch64 runners * More updates * Fix * Pin build environment's Python version to 3.12 for consistency * Update date * Sleep to allow Docker daemon to start * Sleep to allow Docker daemon to start on aarch64 and before checkout * Fix typo * Fix * Unify runner.arch usage * Do not sleep as it doesn't help * Try to use ubuntu-22.04-arm * Update changelog date --------- Co-authored-by: Erik Sundell <[email protected]>
1 parent 83600cf commit 8c38e0f

File tree

14 files changed

+38
-119
lines changed

14 files changed

+38
-119
lines changed

.github/actions/create-dev-env/action.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@ description: Create a build environment
44
runs:
55
using: composite
66
steps:
7-
# actions/setup-python doesn't support Linux aarch64 runners
8-
# See: https://github.com/actions/setup-python/issues/108
9-
# python3 is manually preinstalled in the aarch64 VM self-hosted runner
107
- name: Set Up Python 🐍
118
uses: actions/setup-python@v5
129
with:
13-
python-version: 3.x
14-
if: runner.arch == 'X64'
10+
python-version: "3.12"
1511

1612
- name: Install Dev Dependencies 📦
1713
run: |

.github/workflows/aarch64-setup.yml

-31
This file was deleted.

.github/workflows/contributed-recipes.yml

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
uses: actions/checkout@v4
4545

4646
- name: Build recipe 🛠
47-
# We're pulling here to avoid accidentally using an image that might be present on aarch64 self-hosted runner
4847
run: docker build --pull --rm --force-rm --tag my-custom-image -f ./${{ matrix.dockerfile }} ./
4948
env:
5049
DOCKER_BUILDKIT: 1

.github/workflows/docker-build-test-upload.yml

+1-13
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
steps:
4242
# Image with CUDA needs extra disk space
4343
- name: Free disk space 🧹
44-
if: contains(inputs.variant, 'cuda') && inputs.platform == 'x86_64'
44+
if: contains(inputs.variant, 'cuda') && runner.arch == 'X64'
4545
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
4646
with:
4747
tool-cache: false
@@ -57,18 +57,6 @@ jobs:
5757
- name: Create dev environment 📦
5858
uses: ./.github/actions/create-dev-env
5959

60-
# Self-hosted runners share a state (whole VM) between runs
61-
# Also, they might have running or stopped containers,
62-
# which are not cleaned up by `docker system prune`
63-
- name: Reset docker state and cleanup artifacts 🗑️
64-
if: inputs.platform != 'x86_64'
65-
run: |
66-
docker kill $(docker ps --quiet) || true
67-
docker rm $(docker ps --all --quiet) || true
68-
docker system prune --all --force
69-
rm -rf /tmp/jupyter/
70-
shell: bash
71-
7260
- name: Load parent built image to Docker 📥
7361
if: inputs.parent-image != ''
7462
uses: ./.github/actions/load-image

.github/workflows/docker-merge-tags.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
name: ${{ inputs.image }}-aarch64-${{ inputs.variant }}-tags
4343
path: /tmp/jupyter/tags/
44-
if: github.repository_owner == 'jupyter' && !contains(inputs.variant, 'cuda')
44+
if: ${{ !contains(inputs.variant, 'cuda') }}
4545

4646
# Docker might be stuck when pulling images
4747
# https://github.com/docker/for-mac/issues/2083

.github/workflows/docker-tag-push.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
# Image with CUDA needs extra disk space
3535
- name: Free disk space 🧹
36-
if: contains(inputs.variant, 'cuda') && inputs.platform == 'x86_64'
36+
if: contains(inputs.variant, 'cuda') && runner.arch == 'X64'
3737
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be
3838
with:
3939
tool-cache: false

.github/workflows/docker.yml

+23-25
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ jobs:
6666
parent-image: ""
6767
image: docker-stacks-foundation
6868
platform: aarch64
69-
runs-on: ARM64_FAST
70-
if: github.repository_owner == 'jupyter'
69+
runs-on: ubuntu-22.04-arm
7170

7271
x86_64-foundation:
7372
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -83,9 +82,8 @@ jobs:
8382
parent-image: docker-stacks-foundation
8483
image: base-notebook
8584
platform: aarch64
86-
runs-on: ARM64_FAST
85+
runs-on: ubuntu-22.04-arm
8786
needs: [aarch64-foundation]
88-
if: github.repository_owner == 'jupyter'
8987

9088
x86_64-base:
9189
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -102,9 +100,9 @@ jobs:
102100
parent-image: base-notebook
103101
image: minimal-notebook
104102
platform: aarch64
105-
runs-on: ARM64_FAST
103+
runs-on: ubuntu-22.04-arm
106104
needs: [aarch64-base]
107-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
105+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
108106

109107
x86_64-minimal:
110108
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -122,9 +120,9 @@ jobs:
122120
parent-image: minimal-notebook
123121
image: scipy-notebook
124122
platform: aarch64
125-
runs-on: ARM64_FAST
123+
runs-on: ubuntu-22.04-arm
126124
needs: [aarch64-minimal]
127-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
125+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
128126

129127
x86_64-scipy:
130128
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -142,9 +140,9 @@ jobs:
142140
parent-image: minimal-notebook
143141
image: r-notebook
144142
platform: aarch64
145-
runs-on: ARM64_SLOW
143+
runs-on: ubuntu-22.04-arm
146144
needs: [aarch64-minimal]
147-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
145+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
148146

149147
x86_64-r:
150148
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -162,9 +160,9 @@ jobs:
162160
parent-image: minimal-notebook
163161
image: julia-notebook
164162
platform: aarch64
165-
runs-on: ARM64_SLOW
163+
runs-on: ubuntu-22.04-arm
166164
needs: [aarch64-minimal]
167-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
165+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
168166

169167
x86_64-julia:
170168
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -182,9 +180,9 @@ jobs:
182180
parent-image: scipy-notebook
183181
image: tensorflow-notebook
184182
platform: aarch64
185-
runs-on: ARM64_SLOW
183+
runs-on: ubuntu-22.04-arm
186184
needs: [aarch64-scipy]
187-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
185+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
188186

189187
x86_64-tensorflow:
190188
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -213,9 +211,9 @@ jobs:
213211
parent-image: scipy-notebook
214212
image: pytorch-notebook
215213
platform: aarch64
216-
runs-on: ARM64_SLOW
214+
runs-on: ubuntu-22.04-arm
217215
needs: [aarch64-scipy]
218-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
216+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
219217

220218
x86_64-pytorch:
221219
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -255,9 +253,9 @@ jobs:
255253
parent-image: scipy-notebook
256254
image: datascience-notebook
257255
platform: aarch64
258-
runs-on: ARM64_SLOW
256+
runs-on: ubuntu-22.04-arm
259257
needs: [aarch64-scipy]
260-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
258+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
261259

262260
x86_64-datascience:
263261
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -275,9 +273,9 @@ jobs:
275273
parent-image: scipy-notebook
276274
image: pyspark-notebook
277275
platform: aarch64
278-
runs-on: ARM64_FAST
276+
runs-on: ubuntu-22.04-arm
279277
needs: [aarch64-scipy]
280-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
278+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
281279

282280
x86_64-pyspark:
283281
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -295,9 +293,9 @@ jobs:
295293
parent-image: pyspark-notebook
296294
image: all-spark-notebook
297295
platform: aarch64
298-
runs-on: ARM64_FAST
296+
runs-on: ubuntu-22.04-arm
299297
needs: [aarch64-pyspark]
300-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
298+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
301299

302300
x86_64-all-spark:
303301
uses: ./.github/workflows/docker-build-test-upload.yml
@@ -348,7 +346,7 @@ jobs:
348346
aarch64-pyspark,
349347
aarch64-all-spark,
350348
]
351-
if: github.repository_owner == 'jupyter' && !contains(github.event.pull_request.title, '[FAST_BUILD]')
349+
if: ${{ !contains(github.event.pull_request.title, '[FAST_BUILD]') }}
352350

353351
aarch64-images-tag-push-fast:
354352
uses: ./.github/workflows/docker-tag-push.yml
@@ -367,7 +365,7 @@ jobs:
367365
{ image: base-notebook, variant: default },
368366
]
369367
needs: [aarch64-foundation, aarch64-base]
370-
if: github.repository_owner == 'jupyter' && contains(github.event.pull_request.title, '[FAST_BUILD]')
368+
if: contains(github.event.pull_request.title, '[FAST_BUILD]')
371369

372370
x86_64-images-tag-push:
373371
uses: ./.github/workflows/docker-tag-push.yml
@@ -505,4 +503,4 @@ jobs:
505503
contributed-recipes:
506504
uses: ./.github/workflows/contributed-recipes.yml
507505
needs: [merge-tags]
508-
if: github.repository_owner == 'jupyter' && (github.ref == 'refs/heads/main' || github.event_name == 'schedule')
506+
if: github.ref == 'refs/heads/main' || github.event_name == 'schedule'

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
This changelog only contains breaking and/or significant changes manually introduced to this repository (using Pull Requests).
44
All image manifests can be found in [the wiki](https://github.com/jupyter/docker-stacks/wiki).
55

6+
## 2025-02-11
7+
8+
Affected: all images.
9+
10+
- **Non-breaking:**: start using GitHub-hosted `aarch64` runners.
11+
612
## 2024-12-03
713

814
Affected: all images.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ more information is available in the [documentation](https://jupyter-docker-stac
9393
- Starting from `2022-07-05`, `aarch64` self-hosted runners were sponsored by [`@mathbunnyru`](https://github.com/mathbunnyru/).
9494
Please, consider [sponsoring his work](https://github.com/sponsors/mathbunnyru) on GitHub
9595
- Starting from `2023-10-31`, `aarch64` self-hosted runners are sponsored by an amazing [`2i2c non-profit organization`](https://2i2c.org)
96+
- Starting from `2025-02-11`, we use GitHub-hosted `aarch64` runners
9697

9798
## CPU Architectures
9899

docs/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363

6464
linkcheck_ignore = [
6565
r".*github\.com.*#", # javascript based anchors
66-
r"https://github\.com/jupyter/docker-stacks/settings/actions/runners/new\?arch=arm64\&amp;os=linux", # only works for users with permissions to change runners
6766
r"http://127\.0\.0\.1:.*", # various examples
6867
r"https://mybinder\.org/v2/gh/.*", # lots of 500 errors
6968
r"https://packages\.ubuntu\.com/search\?keywords=openjdk", # frequent read timeouts

docs/index.rst

-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ Table of Contents
3636

3737
maintaining/new-images-and-packages-policy
3838
maintaining/tasks
39-
maintaining/aarch64-runner
4039

4140
.. toctree::
4241
:maxdepth: 2

docs/maintaining/aarch64-runner.md

-30
This file was deleted.

docs/using/recipe_code/generate_matrix.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@
1212

1313
def generate_matrix() -> dict[str, Any]:
1414
dockerfiles = sorted(file.name for file in THIS_DIR.glob("*.dockerfile"))
15-
runs_on = ["ubuntu-latest"]
16-
if REPOSITORY_OWNER == "jupyter":
17-
runs_on.append("ARM64")
15+
runs_on = ["ubuntu-latest", "ubuntu-22.04-arm"]
1816
return {
1917
"dockerfile": dockerfiles,
2018
"runs-on": runs_on,
21-
"exclude": [{"dockerfile": "oracledb.dockerfile", "runs-on": "ARM64"}],
19+
"exclude": [
20+
{"dockerfile": "oracledb.dockerfile", "runs-on": "ubuntu-22.04-arm"}
21+
],
2222
}
2323

2424

images/minimal-notebook/setup-scripts/setup_julia.py

-6
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,6 @@ def get_latest_julia_url() -> tuple[str, str]:
4343
triplet = unify_aarch64(platform.machine()) + "-linux-gnu"
4444
file_info = [vf for vf in latest_version_files if vf["triplet"] == triplet][0]
4545
LOGGER.info(f"Latest version: {file_info['version']} url: {file_info['url']}")
46-
BROKEN_VERSION = "1.11.3"
47-
if file_info["version"] == BROKEN_VERSION:
48-
LOGGER.warning(
49-
f"Not using Julia {BROKEN_VERSION}, because it hangs in GitHub self-hosted runners"
50-
)
51-
return file_info["url"].replace(BROKEN_VERSION, "1.11.1"), "1.11.1"
5246
return file_info["url"], file_info["version"]
5347

5448

0 commit comments

Comments
 (0)