Skip to content

Commit 4a0414b

Browse files
committed
run CI on arm based runners
two reasons: * all our internal computers are arm macs * arm might be more efficient in the cloud/lower carbon footprint
1 parent ec62a35 commit 4a0414b

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ concurrency:
1313

1414
jobs:
1515
build-docs:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04-arm
1717
permissions:
1818
contents: read
1919

@@ -50,7 +50,7 @@ jobs:
5050
environment:
5151
name: github-pages
5252
url: ${{ steps.deployment.outputs.page_url }}
53-
runs-on: ubuntu-latest
53+
runs-on: ubuntu-24.04-arm
5454
needs: build-docs
5555
steps:
5656
- name: Deploy to GitHub Pages

.github/workflows/do-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
publish:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04-arm
1313
permissions:
1414
id-token: write
1515

.github/workflows/python-app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
name: Lint and Style
1515

16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04-arm
1717

1818
steps:
1919
- uses: actions/checkout@v6
@@ -31,7 +31,7 @@ jobs:
3131
pytest:
3232
name: Pytest
3333

34-
runs-on: ubuntu-latest
34+
runs-on: ubuntu-24.04-arm
3535

3636
steps:
3737
- uses: actions/checkout@v6
@@ -52,7 +52,7 @@ jobs:
5252
selftest:
5353
name: Selftest
5454

55-
runs-on: ubuntu-latest
55+
runs-on: ubuntu-24.04-arm
5656

5757
steps:
5858
- uses: actions/checkout@v6
@@ -70,7 +70,7 @@ jobs:
7070
typing:
7171
name: Typing with ty
7272

73-
runs-on: ubuntu-latest
73+
runs-on: ubuntu-24.04-arm
7474

7575
steps:
7676
- uses: actions/checkout@v6

0 commit comments

Comments
 (0)