forked from gopasspw/gopass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (28 loc) · 847 Bytes
/
.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
language: go
dist: trusty
matrix:
include:
- os: windows
env: SLOW_TEST_FACTOR=100 BUILDFLAGS='' GOPASS_OUTPUT=gopass.exe
- os: osx
env: SLOW_TEST_FACTOR=100
- os: linux
before_install:
- if [ $TRAVIS_OS_NAME = linux ]; then sudo apt-get install git gnupg2 clang-format-3.9; fi
- if [ $TRAVIS_OS_NAME = osx ]; then brew install git gnupg clang-format || true; fi
- |
if [ $TRAVIS_OS_NAME = windows ]; then
choco install --yes --force --debug make gnupg || true;
rm /usr/bin/gpg
diskperf -y
fi
- git config --global user.name nobody
- git config --global user.email foo.bar@example.org
go:
- '1.14.x'
script:
- ./travis_helper.sh travis
- make test-integration
- make install-completion
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverage-all.out