Skip to content

Commit f761ae4

Browse files
authored
Merge pull request #139 from CodeDead/feature/linux-arm-test
feat: linux arm test and build
2 parents 1eced8d + 06ddd6b commit f761ae4

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
@@ -34,6 +34,8 @@ jobs:
3434
args: '--target x86_64-apple-darwin'
3535
- platform: 'ubuntu-22.04'
3636
args: ''
37+
- platform: 'ubuntu-22.04-arm'
38+
args: ''
3739
- platform: 'windows-latest'
3840
args: ''
3941

@@ -42,7 +44,7 @@ jobs:
4244
- uses: actions/checkout@v4
4345

4446
- name: install dependencies (ubuntu only)
45-
if: matrix.platform == 'ubuntu-22.04'
47+
if: startsWith(matrix.platform, 'ubuntu-22.04')
4648
run: |
4749
sudo apt-get update
4850
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf

0 commit comments

Comments
 (0)