oauth2_proxy/.travis.yml
Karl Skewes 90e6bd278e feat(arm): Cross build arm and arm64 docker images
- Requires `qemu-user-static`, added to travis - maybe incorrect?
- Add build guide
- `.gitignore` `release/` directory
2019-02-02 13:25:20 +13:00

20 lines
431 B
YAML

language: go
go:
- 1.10.x
- 1.11.x
before_install:
- sudo apt-get install -y qemu-user-static
- sudo docker run --rm --privileged multiarch/qemu-user-static:register
install:
# Fetch dependencies
- wget -O dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
- chmod +x dep
- mv dep $GOPATH/bin/dep
script:
- ./configure
# Run tests
- make test
sudo: false
notifications:
email: false