-
Notifications
You must be signed in to change notification settings - Fork 332
Expand file tree
/
Copy path.travis.yml
More file actions
43 lines (36 loc) · 763 Bytes
/
.travis.yml
File metadata and controls
43 lines (36 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: go
go_import_path: github.com/vouch/vouch-proxy
sudo: false
services:
- docker
go:
- "1.23"
env:
- ISTRAVIS=true
before_install:
- sudo apt-get install openssl
- ./do.sh goget
# - go get github.com/golang/lint/golint # Linter
# - go get github.com/fzipp/gocyclo
script:
# TODO: enable gofmt
# - gofmt -w -s . && git diff --exit-code
- ./do.sh build
- ./do.sh test
# - docker build -t $TRAVIS_REPO_SLUG .
#deploy:
# - provider: script
# skip_cleanup: true
# script: bash .travis/docker_push
# on:
# go: "1.10"
# branch: master
# - provider: script
# skip_cleanup: true
# script: bash .travis/docker_push
# on:
# go: "1.10"
# tags: true
#
notifications:
irc: "irc.libera.chat#vouch"