You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fastgallery/.travis.yml

30 lines
593 B
YAML

language: go
go:
- 1.15
env:
- CGO_CFLAGS_ALLOW="-Xpreprocessor"
matrix:
include:
- os: osx
osx_image: xcode12.2
- os: linux
dist: bionic
- os: linux
dist: focal
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo add-apt-repository -y ppa:tonimelisma/ppa; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -y install libvips-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install vips; fi
- go get github.com/mattn/goveralls
script:
- make deps
- make test
- $GOPATH/bin/goveralls -service=travis-ci