summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml
diff options
context:
space:
mode:
authorWim <wim@42.be>2020-08-10 00:29:54 +0200
committerGitHub <noreply@github.com>2020-08-10 00:29:54 +0200
commit4e50fd864921c556988c919269448efdb90fa961 (patch)
treea3625f03f8de3c4f3841364000a4ea3aa42c1533 /vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml
parentdfdffa0027334e55ce213fc6eb62206dbf48baf6 (diff)
downloadmatterbridge-msglm-4e50fd864921c556988c919269448efdb90fa961.tar.gz
matterbridge-msglm-4e50fd864921c556988c919269448efdb90fa961.tar.bz2
matterbridge-msglm-4e50fd864921c556988c919269448efdb90fa961.zip
Use mattermost v5 module (#1192)
Diffstat (limited to 'vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml')
-rw-r--r--vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml38
1 files changed, 38 insertions, 0 deletions
diff --git a/vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml b/vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml
new file mode 100644
index 00000000..4ad2067b
--- /dev/null
+++ b/vendor/github.com/go-asn1-ber/asn1-ber/.travis.yml
@@ -0,0 +1,38 @@
+language: go
+matrix:
+ include:
+ - go: 1.2.x
+ env: GOOS=linux GOARCH=amd64
+ - go: 1.2.x
+ env: GOOS=linux GOARCH=386
+ - go: 1.2.x
+ env: GOOS=windows GOARCH=amd64
+ - go: 1.2.x
+ env: GOOS=windows GOARCH=386
+ - go: 1.3.x
+ - go: 1.4.x
+ - go: 1.5.x
+ - go: 1.6.x
+ - go: 1.7.x
+ - go: 1.8.x
+ - go: 1.9.x
+ - go: 1.10.x
+ - go: 1.11.x
+ - go: 1.12.x
+ - go: 1.13.x
+ env: GOOS=linux GOARCH=amd64
+ - go: 1.13.x
+ env: GOOS=linux GOARCH=386
+ - go: 1.13.x
+ env: GOOS=windows GOARCH=amd64
+ - go: 1.13.x
+ env: GOOS=windows GOARCH=386
+ - go: tip
+go_import_path: gopkg.in/asn-ber.v1
+install:
+ - go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
+ - go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
+ - go get code.google.com/p/go.tools/cmd/cover || go get golang.org/x/tools/cmd/cover
+ - go build -v ./...
+script:
+ - go test -v -cover ./... || go test -v ./...