diff options
| author | 2026-01-16 15:00:22 +0800 | |
|---|---|---|
| committer | 2026-01-16 15:00:22 +0800 | |
| commit | 252618d3a5ab102498b7ee6d84e0c4afd3a0193c (patch) | |
| tree | e0f250c4b4613a1a2d433770acad5844aa25f71c | |
| parent | 066ffc6ecf27a531dbab76195230dae671ed3a0f (diff) | |
| download | DropOut-252618d3a5ab102498b7ee6d84e0c4afd3a0193c.tar.gz DropOut-252618d3a5ab102498b7ee6d84e0c4afd3a0193c.zip | |
chore: update CI workflow to improve dependency installation
Modified the GitHub Actions workflow to ensure the 'apt-get update' command does not fail and added 'libfuse2' to the list of installed dependencies for Ubuntu, enhancing the reliability of the CI process.
| -rw-r--r-- | .github/workflows/test.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f7f055..2d0453f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,8 +45,8 @@ jobs: - name: Install Dependencies (Ubuntu) if: runner.os == 'Linux' && !matrix.wayland run: | - sudo apt-get update - sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev + sudo apt-get update || true + sudo apt-get install -y libwebkit2gtk-4.1-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev libfuse2 - name: Install Dependencies (Arch Linux) if: matrix.wayland |