aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-14 20:04:03 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-14 20:04:03 +0800
commitcf634adbcb72afc067c09020f097433c9c8109b3 (patch)
treed33d5b8c0acc4d682ec8425c9e6fd4b9cab394ca /.github/workflows/test.yml
parenta9f7a45a9537f3bfd0216ee47c9391ec9fd67587 (diff)
downloadDropOut-cf634adbcb72afc067c09020f097433c9c8109b3.tar.gz
DropOut-cf634adbcb72afc067c09020f097433c9c8109b3.zip
fix: remove Arch Linux build and test workflows; add libfuse2 dependency for Ubuntu
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml29
1 files changed, 0 insertions, 29 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 6cb5753..b5311c9 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -47,32 +47,3 @@ jobs:
- name: Build (Dev)
working-directory: ./src-tauri
run: cargo build --verbose
-
- test-arch:
- name: Test on Arch Linux
- runs-on: ubuntu-latest
- container:
- image: archlinux:latest
- steps:
- - name: Install Dependencies
- run: |
- pacman -Syu --noconfirm
- pacman -S --noconfirm webkit2gtk-4.1 base-devel curl wget file openssl appmenu-gtk-module libappindicator-gtk3 librsvg git fuse2
-
- - uses: actions/checkout@v4
-
- - name: Install Rust
- uses: dtolnay/rust-toolchain@stable
-
- - name: Rust Cache
- uses: swatinem/rust-cache@v2
- with:
- workspaces: ./src-tauri
-
- - name: Run Tests
- working-directory: ./src-tauri
- run: cargo test --verbose
-
- - name: Build (Dev)
- working-directory: ./src-tauri
- run: cargo build --verbose