mirror of
https://blitiri.com.ar/repos/chasquid
synced 2025-12-17 14:37:02 +00:00
This patch updates the travis-ci.org configuration file to use generic Go versions (instead of hard-coded), and Ubuntu Trusty in container mode, for faster builds.
27 lines
627 B
YAML
27 lines
627 B
YAML
# Configuration for https://travis-ci.org/
|
|
|
|
language: go
|
|
go_import_path: blitiri.com.ar/go/chasquid
|
|
dist: trusty
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.7 # Debian stable.
|
|
- stable
|
|
- master
|
|
|
|
# This is needed because the repository has a Makefile, so travis won't invoke
|
|
# "go get" by default.
|
|
install:
|
|
- go get blitiri.com.ar/go/chasquid
|
|
- go get blitiri.com.ar/go/chasquid/cmd/chasquid-util
|
|
- go get blitiri.com.ar/go/chasquid/cmd/mda-lmtp
|
|
- go get blitiri.com.ar/go/chasquid/cmd/smtp-check
|
|
- go get blitiri.com.ar/go/chasquid/cmd/spf-check
|
|
|
|
script:
|
|
- make all
|
|
- go test ./...
|
|
- go test -race ./...
|
|
|