summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 9885aee248f7a1c1ad67c187f028384eccb4dad0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: go

dist: jammy

services:
  - docker

go:
  - "1.19"
  - "1.20"

before_install:
  - sudo apt-get update -q -y
  - docker pull busybox
  - docker pull centos:7
  - chmod -R go-w ./dockerclient/testdata

script:
  - make build
  - make test
  - travis_wait 45 make test-conformance

notifications:
  irc: "chat.freenode.net#openshift-dev"