Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 3 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,15 @@ arch:
- amd64
- arm64

dist: jammy
dist: noble

services:
- docker

go:
- "1.22.12"
- "1.23.12"

before_install:
- sudo systemctl stop docker.service && sudo systemctl stop docker.socket
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- yes | sudo add-apt-repository "deb [arch=${TRAVIS_CPU_ARCH}] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update -q -y
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
- sudo systemctl enable --now docker.service && sudo systemctl enable --now docker.socket
- docker pull mirror.gcr.io/alpine
- docker pull mirror.gcr.io/busybox
- docker pull public.ecr.aws/docker/library/centos:7
Expand All @@ -34,7 +28,4 @@ before_install:
script:
- make build
- make test
- travis_wait 45 make test-conformance

notifications:
irc: "chat.freenode.net#openshift-dev"
- travis_wait 45 make test-conformance DOCKER_API_VERSION=1.44
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,5 @@ docker rmi registry.fedoraproject.org/fedora-minimal:42-aarch64; docker pull reg
docker rmi mirror.gcr.io/golang:1.24; docker pull mirror.gcr.io/golang:1.24
docker rmi mirror.gcr.io/nginx; docker pull mirror.gcr.io/nginx
chmod -R go-w ./dockerclient/testdata
go test ./dockerclient -tags conformance -timeout 30m
env DOCKER_API_VERSION=1.44 go test ./dockerclient -tags conformance -timeout 30m
```