We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c700d2f commit ecbc7f3Copy full SHA for ecbc7f3
.travis.yml
@@ -21,3 +21,25 @@ jobs:
21
- echo "Run unit tests..."
22
- go vet $(go list ./...)
23
- go test -v -race $(go list ./...)
24
+
25
+ - stage: Build
26
+ go:
27
+ -1.13.x
28
+ os:
29
+ - linux
30
+ before_script:
31
+ - go mod tidy -v
32
+ - export GOVERSION=$(go version | awk '{print $3;}')
33
+ script:
34
+ - echo "Build stage"
35
+ - make compile
36
+ after_success:
37
+ deploy:
38
+ skip_cleanup: true
39
+ provider: script
40
+ script: make release
41
+ on:
42
+ tags: true
43
+ condition: "$TRAVIS_OS_NAME = linux"
44
+ addons:
45
+ ssh_known_hosts: github.com
0 commit comments