-
Notifications
You must be signed in to change notification settings - Fork 5
/
.travis.yml
53 lines (48 loc) · 1.32 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
51
52
53
language: go
cache:
directories:
- $HOME/gopath/pkg/mod
matrix:
include:
##########################################################################
# Go versions
##########################################################################
- os: linux
go: "1.21.3"
##########################################################################
# GCC on Linux
##########################################################################
- os: linux
go: "1.21.3"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env:
- CC=gcc-5
- CXX=g++-5
- os: linux
go: "1.21.3"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-9
env:
- CC=gcc-9
- CXX=g++-9
install:
- go mod download
script:
- "if [[ $LINT_ENABLE ]]; then
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /tmp/lint v1.38.0;
/tmp/lint/golangci-lint run --allow-parallel-runners -c .golangci.yml -v;
fi"
- 'if [[ $LEGACY ]]; then
go test -tags "legacy integration" -mod=readonly -count 1 ./... ;
else
go test -tags integration -mod=readonly -count 1 ./... ;
fi'