From da705c36ecb9e7cfe9a242a8cc117dfddd866de4 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 20 Aug 2026 12:30:19 -0400 Subject: [PATCH] Add a timeout to the SMB and NFS setup steps in CI The apt mirrors regularly hang for many minutes, which was taking out random jobs until the job timeout. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d2c015c59..11b72ccc3d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -135,6 +135,7 @@ jobs: - name: Set up SMB share if: matrix.shard == 'smb' + timeout-minutes: 10 run: | sudo apt install -y --no-install-recommends samba cifs-utils sudo mkdir -p /srv/zotero-smb /mnt/zotero-smb @@ -151,6 +152,7 @@ jobs: - name: Set up NFS share if: matrix.shard == 'nfs' + timeout-minutes: 10 run: | sudo apt install -y --no-install-recommends nfs-kernel-server sudo mkdir -p /srv/zotero-nfs /mnt/zotero-nfs