diff options
author | Brian Behlendorf <[email protected]> | 2023-03-02 14:58:21 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2023-03-09 18:46:36 -0800 |
commit | 1d2aea771170d1b3076a5d92bf444615a73dd459 (patch) | |
tree | 65470a031d1f9a763c64c17b27f6780b5d4749b8 /.github/workflows/zfs-tests-functional.yml | |
parent | 0a4e41d0fadbbc6b630660a06a930b0ac06e8f0c (diff) |
Workaround GitHub Action failure
Ubuntu 20.04 and 22.04 workflows are failing due to an error
which is hit when running `apt-get update`. Until the
problematic package is fixed apply the suggested workaround
described here:
https://github.com/orgs/community/discussions/47863
Reviewed-by: Matthew Ahrens <[email protected]>
Reviewed-by: George Melikov <[email protected]>
Reviewed-by: Richard Yao <[email protected]>
Reviewed-by: Tino Reichardt <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #14530
Diffstat (limited to '.github/workflows/zfs-tests-functional.yml')
-rw-r--r-- | .github/workflows/zfs-tests-functional.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/zfs-tests-functional.yml b/.github/workflows/zfs-tests-functional.yml index a3913b531..403b20a40 100644 --- a/.github/workflows/zfs-tests-functional.yml +++ b/.github/workflows/zfs-tests-functional.yml @@ -17,8 +17,10 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} - name: Install dependencies run: | - sudo apt-get update - sudo apt-get -qq upgrade + # https://github.com/orgs/community/discussions/47863 + sudo apt-mark hold grub-efi-amd64-signed + sudo apt-get update --fix-missing + sudo apt-get upgrade sudo apt-get install --yes -qq build-essential autoconf libtool gdb lcov \ git alien fakeroot wget curl bc fio acl \ sysstat mdadm lsscsi parted gdebi attr dbench watchdog ksh \ |