summaryrefslogtreecommitdiff
path: root/vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-10-07 16:14:30 +0200
committerGitHub <noreply@github.com>2021-10-07 16:14:30 +0200
commit14c0fcc6b7b3e8c1f28efea329ab9a6bf0d99b70 (patch)
tree9b18f1ece8c7f68ff8d68a7cd3a5d68931dbcc3e /vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml
parent703db8e9a884966f5b297f9450735ee4263dd072 (diff)
parentda8e4cdeb440f0aa0cfb3d0a6eb2e88b89ddb4cb (diff)
downloadpodman-14c0fcc6b7b3e8c1f28efea329ab9a6bf0d99b70.tar.gz
podman-14c0fcc6b7b3e8c1f28efea329ab9a6bf0d99b70.tar.bz2
podman-14c0fcc6b7b3e8c1f28efea329ab9a6bf0d99b70.zip
Merge pull request #11884 from containers/dependabot/go_modules/github.com/opencontainers/selinux-1.9.1
Bump github.com/opencontainers/selinux from 1.8.5 to 1.9.1
Diffstat (limited to 'vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml')
-rw-r--r--vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml39
1 files changed, 0 insertions, 39 deletions
diff --git a/vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml b/vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml
deleted file mode 100644
index f9b295918..000000000
--- a/vendor/github.com/bits-and-blooms/bitset/azure-pipelines.yml
+++ /dev/null
@@ -1,39 +0,0 @@
-# Go
-# Build your Go project.
-# Add steps that test, save build artifacts, deploy, and more:
-# https://docs.microsoft.com/azure/devops/pipelines/languages/go
-
-trigger:
-- master
-
-pool:
- vmImage: 'Ubuntu-16.04'
-
-variables:
- GOBIN: '$(GOPATH)/bin' # Go binaries path
- GOROOT: '/usr/local/go1.11' # Go installation path
- GOPATH: '$(system.defaultWorkingDirectory)/gopath' # Go workspace path
- modulePath: '$(GOPATH)/src/github.com/$(build.repository.name)' # Path to the module's code
-
-steps:
-- script: |
- mkdir -p '$(GOBIN)'
- mkdir -p '$(GOPATH)/pkg'
- mkdir -p '$(modulePath)'
- shopt -s extglob
- shopt -s dotglob
- mv !(gopath) '$(modulePath)'
- echo '##vso[task.prependpath]$(GOBIN)'
- echo '##vso[task.prependpath]$(GOROOT)/bin'
- displayName: 'Set up the Go workspace'
-
-- script: |
- go version
- go get -v -t -d ./...
- if [ -f Gopkg.toml ]; then
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
- fi
- go build -v .
- workingDirectory: '$(modulePath)'
- displayName: 'Get dependencies, then build'