mirror of
https://github.com/containers/podman.git
synced 2025-12-02 02:58:03 +08:00
Move to containers/image v5 and containers/buildah to v1.11.4. Replace an equality check with a type assertion when checking for a docker.ErrUnauthorizedForCredentials in `podman login`. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
32 lines
475 B
YAML
32 lines
475 B
YAML
dist: xenial
|
|
language: go
|
|
go:
|
|
- 1.12.x
|
|
- 1.13.x
|
|
os:
|
|
- linux
|
|
- osx
|
|
- windows
|
|
env:
|
|
matrix:
|
|
- GOARCH=amd64
|
|
- GOARCH=386
|
|
global:
|
|
- GOPROXY=https://proxy.golang.org
|
|
- GO111MODULE=on
|
|
install:
|
|
- travis-scripts/win-setup.bash
|
|
script:
|
|
- travis_wait 25 travis-scripts/run-tests.bash
|
|
services:
|
|
- docker
|
|
matrix:
|
|
fast_finish: true
|
|
exclude:
|
|
- os: osx
|
|
env: GOARCH=386
|
|
- os: osx
|
|
env: GOARCH=386
|
|
allow_failures:
|
|
- os: windows
|