diff options
author | Tony Hutter <[email protected]> | 2022-12-01 10:21:12 -0800 |
---|---|---|
committer | Tony Hutter <[email protected]> | 2022-12-01 12:39:45 -0800 |
commit | 7819b12f2cf2f77f8c4cfc7d11328fab7b5feb32 (patch) | |
tree | 085a6444d639c45ab61e8149df5351c2ecfaa7e3 | |
parent | c8d2ab05e1e6bf21185723fabdebbe5bb3374381 (diff) |
zfs-2.1.7: Use ubuntu-20.04 for zloop and sanity builders
The zfs-2.1.7 branch is still using the older 'python-dev'
package names rather than the newer 'python3-dev' packages that
are required for 'ubuntu-latest'. Use 'ubuntu-20.04' instead of
'ubuntu-latest' to get around this.
Signed-off-by: Tony Hutter <[email protected]>
-rw-r--r-- | .github/workflows/zfs-tests-sanity.yml | 2 | ||||
-rw-r--r-- | .github/workflows/zloop.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/zfs-tests-sanity.yml b/.github/workflows/zfs-tests-sanity.yml index 875ca4d94..c56355623 100644 --- a/.github/workflows/zfs-tests-sanity.yml +++ b/.github/workflows/zfs-tests-sanity.yml @@ -6,7 +6,7 @@ on: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 with: diff --git a/.github/workflows/zloop.yml b/.github/workflows/zloop.yml index f9caa9ed4..1c42491ee 100644 --- a/.github/workflows/zloop.yml +++ b/.github/workflows/zloop.yml @@ -6,7 +6,7 @@ on: jobs: tests: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 env: TEST_DIR: /var/tmp/zloop steps: |