Skip to content

Commit

Permalink
fix: run old Docker versions on Ubuntu 20.04
Browse files Browse the repository at this point in the history
Ubuntu 22.04 upgrades systemd, which upgrades how cgroups are handled, which
the old Docker versions are not happy with.

See:
- docker/for-linux#219
- systemd/systemd#13477
  • Loading branch information
pitkley committed Dec 19, 2023
1 parent 087799a commit 74b9e33
Showing 1 changed file with 20 additions and 11 deletions.
31 changes: 20 additions & 11 deletions .github/workflows/it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,20 +50,29 @@ jobs:
test-on-docker:
needs:
- build-test-binary
runs-on: ubuntu-latest
runs-on: ${{ matrix.runs-on }}
strategy:
fail-fast: false
matrix:
dind-image:
- docker:19.03-dind
- docker:18.09-dind
- docker:18.06-dind
- docker:18.03-dind
- docker:17.12-dind
- docker:17.09-dind
- docker:17.07-dind
- docker:17.06-dind
- docker:1.13-dind
include:
- dind-image: docker:19.03-dind
runs-on: ubuntu-20.04
- dind-image: docker:18.09-dind
runs-on: ubuntu-20.04
- dind-image: docker:18.06-dind
runs-on: ubuntu-20.04
- dind-image: docker:18.03-dind
runs-on: ubuntu-20.04
- dind-image: docker:17.12-dind
runs-on: ubuntu-20.04
- dind-image: docker:17.09-dind
runs-on: ubuntu-20.04
- dind-image: docker:17.07-dind
runs-on: ubuntu-20.04
- dind-image: docker:17.06-dind
runs-on: ubuntu-20.04
- dind-image: docker:1.13-dind
runs-on: ubuntu-20.04

services:
dind:
Expand Down

0 comments on commit 74b9e33

Please sign in to comment.