Files
zot/.travis.yml
T
Ramkumar Chinchani 9d4e8b4594 zot: initial commit
2019-06-21 15:29:19 -07:00

15 lines
445 B
YAML

language: go
matrix:
include:
- os: linux
notifications:
email: false
install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget -N https://github.com/bazelbuild/bazel/releases/download/0.26.1/bazel-0.26.1-installer-linux-x86_64.sh && chmod +x bazel-0.26.1-installer-linux-x86_64.sh && ./bazel-0.26.1-installer-linux-x86_64.sh --user; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; make && make -f Makefile.bazel build; fi