summaryrefslogtreecommitdiff
path: root/vendor/github.com/bits-and-blooms/bitset/.travis.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-06-03 17:57:25 +0200
committerGitHub <noreply@github.com>2021-06-03 17:57:25 +0200
commit0f8ec8e366ce77c3309c560e471cc957851e1cf1 (patch)
treef55eeb7087c5273dd7ba5a35cc600133f969eda9 /vendor/github.com/bits-and-blooms/bitset/.travis.yml
parent251f5b8d75688d7f302616fa4260084709680eb2 (diff)
parentb36278c3ef8f1db76e337e18f2cd06fe51348a19 (diff)
downloadpodman-0f8ec8e366ce77c3309c560e471cc957851e1cf1.tar.gz
podman-0f8ec8e366ce77c3309c560e471cc957851e1cf1.tar.bz2
podman-0f8ec8e366ce77c3309c560e471cc957851e1cf1.zip
Merge pull request #10543 from containers/dependabot/go_modules/github.com/opencontainers/selinux-1.8.2
Bump github.com/opencontainers/selinux from 1.8.1 to 1.8.2
Diffstat (limited to 'vendor/github.com/bits-and-blooms/bitset/.travis.yml')
-rw-r--r--vendor/github.com/bits-and-blooms/bitset/.travis.yml37
1 files changed, 37 insertions, 0 deletions
diff --git a/vendor/github.com/bits-and-blooms/bitset/.travis.yml b/vendor/github.com/bits-and-blooms/bitset/.travis.yml
new file mode 100644
index 000000000..094aa5ce0
--- /dev/null
+++ b/vendor/github.com/bits-and-blooms/bitset/.travis.yml
@@ -0,0 +1,37 @@
+language: go
+
+sudo: false
+
+branches:
+ except:
+ - release
+
+branches:
+ only:
+ - master
+ - travis
+
+go:
+ - "1.11.x"
+ - tip
+
+matrix:
+ allow_failures:
+ - go: tip
+
+before_install:
+ - if [ -n "$GH_USER" ]; then git config --global github.user ${GH_USER}; fi;
+ - if [ -n "$GH_TOKEN" ]; then git config --global github.token ${GH_TOKEN}; fi;
+ - go get github.com/mattn/goveralls
+
+before_script:
+ - make deps
+
+script:
+ - make qa
+
+after_failure:
+ - cat ./target/test/report.xml
+
+after_success:
+ - if [ "$TRAVIS_GO_VERSION" = "1.11.1" ]; then $HOME/gopath/bin/goveralls -covermode=count -coverprofile=target/report/coverage.out -service=travis-ci; fi;