mirror of
https://github.com/zotero/zotero.git
synced 2026-08-28 05:25:31 +00:00
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.
This commit is contained in:
parent
b930ddb863
commit
da705c36ec
1 changed files with 2 additions and 0 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue