diff options
author | Cody P Schafer <dev@codyps.com> | 2021-10-22 10:17:40 -0400 |
---|---|---|
committer | Cody P Schafer <dev@codyps.com> | 2021-10-22 10:17:40 -0400 |
commit | b53dc1b08872f571d0a46a92db5bc0e8f1364e10 (patch) | |
tree | 42fc07ebc8db757b0fb2f9bd0ace657efd80e550 | |
parent | 33a12f8fb44d02f1cecde81b5c511536642b5a72 (diff) | |
download | rust-libzfs-b53dc1b08872f571d0a46a92db5bc0e8f1364e10.zip |
gha/check: configure apt retries
-rw-r--r-- | .github/workflows/check.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 54583f5..2b3c7ea 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -21,6 +21,9 @@ jobs: components: rustfmt, clippy - uses: Swatinem/rust-cache@v1 + - name: Configure apt + run: echo 'APT::Acquire::Retries "3";' | sudo tee /etc/apt/apt.conf.d/80-retries + - name: Install dependencies run: sudo apt install libzfslinux-dev zfsutils-linux |