Skip to content

Commit 4d66d5e

Browse files
committed
fix: ubuntu latest doesnt have webgtk, thats why migrating to electron
1 parent 94ffbd1 commit 4d66d5e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test-on-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
platform: [macos-latest, ubuntu-latest, windows-latest]
9+
platform: [macos-latest, ubuntu-22.04, windows-latest]
1010

1111
runs-on: ${{ matrix.platform }}
1212
timeout-minutes: 60
@@ -19,7 +19,7 @@ jobs:
1919
- name: install Rust stable
2020
uses: dtolnay/rust-toolchain@stable
2121
- name: install dependencies (ubuntu only)
22-
if: matrix.platform == 'ubuntu-latest'
22+
if: matrix.platform == 'ubuntu-22.04'
2323
run: |
2424
sudo apt-get update
2525
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
@@ -31,7 +31,7 @@ jobs:
3131
npm run _copy-dist-to-test
3232
npm run tauri build
3333
- name: Run tauri integration tests in ubuntu
34-
if: matrix.platform == 'ubuntu-latest'
34+
if: matrix.platform == 'ubuntu-22.04'
3535
run: xvfb-run ./src-tauri/target/release/phoenix-file-system -q
3636

3737
- name: Run tauri integration tests in macos

0 commit comments

Comments
 (0)