aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-16 15:00:22 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-16 15:00:22 +0800
commit252618d3a5ab102498b7ee6d84e0c4afd3a0193c (patch)
treee0f250c4b4613a1a2d433770acad5844aa25f71c
parent066ffc6ecf27a531dbab76195230dae671ed3a0f (diff)
downloadDropOut-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.yml4
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