forked from ghostunnel/ghostunnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
50 lines (41 loc) · 2.01 KB
/
.travis.yml
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
44
45
46
47
48
49
50
---
language: go
sudo: required
dist: trusty
services:
- docker
go:
- '1.10.4'
deploy:
- provider: releases
api_key:
secure: 'rxcM8Ttmo0zTd2i+NBgG6YIDwtRwNCL28vPvAQ4GZ/SS7+8/fZn1RF8ZI2wWbZB2SqQveAiPmO66ZPXcGDsf/ynOHVvppn7IwJRSJoh2Z+QNu5i97JqQEtcM3DY5DZKO+scYqeCvINmLXmwSLHYDij/Nnu0hBXeobPizBDhqnN7AD0FZq2zbbCxZFPrAwUsB1G6wZTKWRFl4lX7baKDqyICc6OgGzb3m127SgrseW2zR6vBfHbc3Ep1hoIqjTf0vVXyDhCpDaIXAkZP43Jp1FxBwryrhEtPzx/46KWvPJLRwZc5gnRRrXX0HqrhlD577OxE/8VnjI+32mRTTNjSD8aOBraZ1Q71U5uLXLMoL1LD3qAfYv5sJaUKdbGtDkfGGwQ4X70A97gqmQI5gpYWU1LUksHwVJMwUqO2cPWciQikOTXQrDUT3qnuauZ432IP7izNhYmFWYwOEoQOzUA8pF1dl2jvUURY9dgQ2AHcJfCYV9C5TnBQ/2nO4Xbc96eo/Ky5OIX+lsfHx4bJmqvT6N+o/b9TJQYg3o4t0rqGB95Zt8/SbapvKlIU5I8SKGyuEpnKN4yUGAQRg8heuAPJ8mz3bmGriT9oC3q577vAqaCm2JcmvHCVx9OME0B04vLzxjYJXPHAi9CRmhUOZ8haHby3BkI3KYjnAaasUBot7oPI='
file:
- dist/ghostunnel-${TRAVIS_TAG}-linux-amd64-with-pkcs11
- dist/ghostunnel-${TRAVIS_TAG}-darwin-amd64-with-pkcs11
- dist/ghostunnel-${TRAVIS_TAG}-windows-386-with-pkcs11.exe
- dist/ghostunnel-${TRAVIS_TAG}-windows-amd64-with-pkcs11.exe
draft: true
skip_cleanup: true
on:
tags: true
before_install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
- go get github.com/mattn/goveralls
- go get github.com/karalabe/xgo
install:
# Compile with CGO on/off for testing
- CGO_ENABLED=0 go build -o ghostunnel-${TRAVIS_TAG}-linux-amd64-without-pkcs11 .
- CGO_ENABLED=1 go build -o ghostunnel-${TRAVIS_TAG}-linux-amd64-with-pkcs11 .
# Build Docker container
- make docker-build
# Make sure Docker image runs
- docker run --rm squareup/ghostunnel --version
# Cross-compile dist binaries
- GO_VERSION=${TRAVIS_GO_VERSION} VERSION=${TRAVIS_TAG} make -f Makefile.dist dist
script:
# Run tests inside Docker (guarantees that we have proper PKCS11 test setup)
- GO_VERSION=${TRAVIS_GO_VERSION} make docker-test
after_success:
- $HOME/gopath/bin/goveralls -coverprofile coverage-merged.out -service=travis-ci