mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-07 00:17:13 +00:00
31 lines
459 B
YAML
31 lines
459 B
YAML
# Travis CI build file for OpenAPI Compiler, including Go and Swift plugins
|
|
|
|
# Use Ubuntu 14.04
|
|
dist: trusty
|
|
|
|
sudo: false
|
|
|
|
language: go
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- clang-3.8
|
|
- lldb-3.8
|
|
- libicu-dev
|
|
- libtool
|
|
- libcurl4-openssl-dev
|
|
- libbsd-dev
|
|
- build-essential
|
|
- libssl-dev
|
|
- uuid-dev
|
|
- curl
|
|
- unzip
|
|
|
|
install:
|
|
- ./.travis-install.sh
|
|
- export PATH=.:$HOME/local/bin:$PATH
|
|
- make
|
|
|
|
script:
|
|
- go test . -v
|