Skip to content

Commit b2d88f6

Browse files
authored
ci: support linux arm installer builds (#302)
1 parent 1875fcd commit b2d88f6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ jobs:
5050

5151
- platform: ubuntu-22.04
5252
target: x86_64-unknown-linux-gnu
53+
- platform: ubuntu-22.04-arm
54+
target: aarch64-unknown-linux-gnu
5355

5456
runs-on: ${{ matrix.platform }}
5557
steps:
@@ -67,10 +69,10 @@ jobs:
6769
run: rustup target add ${{ matrix.target }}
6870

6971
- name: Install dependencies (ubuntu only)
70-
if: matrix.platform == 'ubuntu-22.04'
72+
if: startsWith(matrix.platform, 'ubuntu')
7173
run: |
7274
sudo apt-get update
73-
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
75+
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf xdg-utils
7476
7577
- name: Install Rust stable
7678
uses: dtolnay/rust-toolchain@stable

0 commit comments

Comments
 (0)