Skip to content

Commit c0e1a4b

Browse files
committed
Add Linux ARM64 workflows utilizing new public runners
1 parent f8a050b commit c0e1a4b

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

.github/workflows/linux-52x-arm64.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Linux-ARM64 5.2
2+
3+
on:
4+
schedule:
5+
# Every Monday morning, at 1:11 UTC
6+
- cron: '11 1 * * 1'
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
uses: ./.github/workflows/common.yml
12+
with:
13+
runs_on: 'ubuntu-24.04-arm'
14+
compiler_ref: refs/tags/5.2.1
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Linux-ARM64 5.3
2+
3+
on:
4+
schedule:
5+
# Every Monday morning, at 2:22 UTC
6+
- cron: '22 2 * * 1'
7+
pull_request:
8+
push:
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
uses: ./.github/workflows/common.yml
16+
with:
17+
runs_on: 'ubuntu-24.04-arm'
18+
compiler_ref: refs/heads/5.3
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Linux-ARM64 trunk
2+
3+
on:
4+
schedule:
5+
# Every Monday morning, at 3:33 UTC
6+
- cron: '33 3 * * 1'
7+
pull_request:
8+
push:
9+
branches:
10+
- main
11+
workflow_dispatch:
12+
13+
jobs:
14+
build:
15+
uses: ./.github/workflows/common.yml
16+
with:
17+
runs_on: 'ubuntu-24.04-arm'
18+
compiler_ref: refs/heads/trunk

0 commit comments

Comments
 (0)