Skip to content

Commit 50523c2

Browse files
committed
github: don't abort on remount failures
Signed-off-by: Simon Deziel <[email protected]>
1 parent 8bbb9ba commit 50523c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
# optimize ext4 FSes for performance, not reliability
165165
for fs in $(findmnt --noheading --type ext4 --list --uniq | awk '{print $1}'); do
166166
# nombcache and data=writeback cannot be changed on remount
167-
sudo mount -o remount,noatime,barrier=0,commit=6000 "${fs}"
167+
sudo mount -o remount,noatime,barrier=0,commit=6000 "${fs}" || true
168168
done
169169
170170
# disable dpkg from calling sync()

0 commit comments

Comments
 (0)