From: Darren Tucker Date: Fri, 14 Mar 2025 05:24:06 +0000 (+1100) Subject: Also lazily unmount workspace in case of straggers. X-Git-Tag: V_10_0_P1~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=442a44970179d70ebb62bba792699eaec978a1db;p=thirdparty%2Fopenssh-portable.git Also lazily unmount workspace in case of straggers. --- diff --git a/.github/workflows/upstream.yml b/.github/workflows/upstream.yml index 7fda517ff..71885ca31 100644 --- a/.github/workflows/upstream.yml +++ b/.github/workflows/upstream.yml @@ -65,7 +65,9 @@ jobs: /usr/obj/regress/usr.bin/ssh/obj/log/* - name: unmount workspace if: always() - run: fusermount -u ${GITHUB_WORKSPACE} || true + run: | + fusermount -u ${GITHUB_WORKSPACE} || true + fusermount -z -u ${GITHUB_WORKSPACE} || true working-directory: ${{ runner.temp }} - name: shutdown VM if: always()