Skip to content

Commit c8b6514

Browse files
committed
feat: include linux arm preview builds and tests
1 parent be618f6 commit c8b6514

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
args: '--target x86_64-apple-darwin'
2121
- platform: 'ubuntu-22.04'
2222
args: ''
23+
- platform: 'ubuntu-22.04-arm'
24+
args: ''
2325
- platform: 'windows-latest'
2426
args: ''
2527

@@ -28,7 +30,7 @@ jobs:
2830
- uses: actions/checkout@v4
2931

3032
- name: install dependencies (ubuntu only)
31-
if: matrix.platform == 'ubuntu-22.04'
33+
if: startsWith(matrix.platform, 'ubuntu-22.04')
3234
run: |
3335
sudo apt-get update
3436
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
args: '--target x86_64-apple-darwin'
3232
- platform: 'ubuntu-22.04'
3333
args: ''
34+
- platform: 'ubuntu-22.04-arm'
35+
args: ''
3436
- platform: 'windows-latest'
3537
args: ''
3638

@@ -39,7 +41,7 @@ jobs:
3941
- uses: actions/checkout@v4
4042

4143
- name: install dependencies (ubuntu only)
42-
if: matrix.platform == 'ubuntu-22.04'
44+
if: startsWith(matrix.platform, 'ubuntu-22.04')
4345
run: |
4446
sudo apt-get update
4547
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf

0 commit comments

Comments
 (0)