forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 55e842916abe83a008e4078b3cfb384c5a49ebf6 (Azure#6010)
Modify SecureString to SecretBase
- Loading branch information
1 parent
7ea08a3
commit 590bd67
Showing
32 changed files
with
1,240 additions
and
7,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
sudo: false | ||
|
||
language: go | ||
go: | ||
- 1.10.x | ||
- 1.11.x | ||
- 1.12.x | ||
|
||
branches: | ||
only: | ||
- master | ||
- latest | ||
|
||
env: | ||
global: | ||
- DEP_RELEASE_TAG=v0.5.1 # so the script knows which version to use | ||
- IGNORE_BREAKING_CHANGES=true | ||
|
||
before_install: | ||
- curl -sSL https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
|
||
install: | ||
- dep ensure -v | ||
|
||
script: | ||
- bash rungas.sh | ||
- grep -L -r --include *.go --exclude-dir vendor -P "Copyright (\d{4}|\(c\)) Microsoft" ./ | tee /dev/stderr | test -z "$(< /dev/stdin)" | ||
- echo -e "travis_fold:start:go.build\033[33;1mBuilding all packages\033[0m" | ||
- go build -v $(go list ./... | grep -v vendor) | ||
- echo -e "\ntravis_fold:end:go.build\r" | ||
- if [[ $TRAVIS_GO_VERSION == 1.11* ]]; then test -z "$(go fmt $(go list ./... | grep -v vendor) | tee /dev/stderr)"; fi | ||
- go vet $(go list ./... | grep -v vendor) | ||
- go test $(sh ./findTestedPackages.sh) | ||
- go run ./tools/apidiff/main.go packages ./services FETCH_HEAD~1 FETCH_HEAD --copyrepo --breakingchanges || $IGNORE_BREAKING_CHANGES | ||
- go run ./tools/pkgchk/main.go ./services --exceptions ./tools/pkgchk/exceptions.txt | ||
- git diff --exit-code | ||
|
||
cache: | ||
directories: | ||
- $GOPATH/pkg/dep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,79 +1,58 @@ | ||
jobs: | ||
- job: Build_Test | ||
strategy: | ||
matrix: | ||
Linux_Go112: | ||
vm.image: 'ubuntu-18.04' | ||
go.version: '1.12' | ||
GOROOT: '/usr/local/go$(go.version)' | ||
Linux_Go113: | ||
vm.image: 'ubuntu-18.04' | ||
go.version: '1.13' | ||
GOROOT: '/usr/local/go$(go.version)' | ||
Win_Go112: | ||
vm.image: 'windows-2019' | ||
go.version: '1.12' | ||
GOROOT: 'c:\go$(go.version)' | ||
Win_Go113: | ||
vm.image: 'windows-2019' | ||
go.version: '1.13' | ||
GOROOT: 'c:\go$(go.version)' | ||
pool: | ||
vmImage: 'Ubuntu 16.04' | ||
|
||
pool: | ||
vmImage: $(vm.image) | ||
variables: | ||
GOROOT: '/usr/local/go1.12' | ||
GOPATH: '$(system.defaultWorkingDirectory)/work' | ||
sdkPath: '$(GOPATH)/src/github.com/$(build.repository.name)' | ||
IGNORE_BREAKING_CHANGES: true | ||
|
||
variables: | ||
GOPATH: '$(system.defaultWorkingDirectory)/work' | ||
sdkPath: '$(GOPATH)/src/github.com/$(build.repository.name)' | ||
IGNORE_BREAKING_CHANGES: true | ||
|
||
steps: | ||
- script: | | ||
set -e | ||
mkdir -p '$(GOPATH)/bin' | ||
mkdir -p '$(sdkPath)' | ||
shopt -s dotglob extglob | ||
mv !(work) '$(sdkPath)' | ||
echo '##vso[task.prependpath]$(GOROOT)/bin' | ||
echo '##vso[task.prependpath]$(GOPATH)/bin' | ||
go version | ||
displayName: 'Create Go Workspace' | ||
- script: | | ||
set -e | ||
curl -sSL https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure -v | ||
go get -u golang.org/x/lint/golint | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Install Dependencies' | ||
- script: go vet $(go list ./... | grep -v vendor) | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Vet' | ||
- script: go build -v $(go list ./... | grep -v vendor) | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Build' | ||
- script: go test $(dirname $(find . -path ./vendor -prune -o -name '*_test.go' -print) | sort -u) | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Run Tests' | ||
- script: go run ./tools/apidiff/main.go packages ./services FETCH_HEAD~1 FETCH_HEAD --copyrepo --breakingchanges || $IGNORE_BREAKING_CHANGES | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Display Breaking Changes' | ||
- script: go run ./tools/pkgchk/main.go ./services --exceptions ./tools/pkgchk/exceptions.txt | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Verify Package Directory' | ||
- script: grep -L -r --include *.go --exclude-dir vendor -P "Copyright (\d{4}|\(c\)) Microsoft" ./ | tee >&2 | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Copyright Header Check' | ||
failOnStderr: true | ||
condition: succeededOrFailed() | ||
- script: gofmt -s -l -w $(find . -path ./vendor -prune -o -name '*.go' -print) >&2 | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Format Check' | ||
failOnStderr: true | ||
condition: succeededOrFailed() | ||
- script: | | ||
golint ./storage/... >&2 | ||
golint ./tools/... >&2 | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Linter Check' | ||
failOnStderr: true | ||
condition: succeededOrFailed() | ||
steps: | ||
- script: | | ||
set -e | ||
mkdir -p '$(GOPATH)/bin' | ||
mkdir -p '$(sdkPath)' | ||
shopt -s dotglob extglob | ||
mv !(work) '$(sdkPath)' | ||
echo '##vso[task.prependpath]$(GOROOT)/bin' | ||
echo '##vso[task.prependpath]$(GOPATH)/bin' | ||
displayName: 'Create Go Workspace' | ||
- script: | | ||
set -e | ||
curl -sSL https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
dep ensure -v | ||
go get -u golang.org/x/lint/golint | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Install Dependencies' | ||
- script: go vet $(go list ./... | grep -v vendor) | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Vet' | ||
- script: go build -v $(go list ./... | grep -v vendor) | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Build' | ||
- script: go test $(dirname $(find . -path ./vendor -prune -o -name '*_test.go' -print) | sort -u) | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Run Tests' | ||
- script: go run ./tools/apidiff/main.go packages ./services FETCH_HEAD~1 FETCH_HEAD --copyrepo --breakingchanges || $IGNORE_BREAKING_CHANGES | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Display Breaking Changes' | ||
- script: go run ./tools/pkgchk/main.go ./services --exceptions ./tools/pkgchk/exceptions.txt | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Verify Package Directory' | ||
- script: grep -L -r --include *.go --exclude-dir vendor -P "Copyright (\d{4}|\(c\)) Microsoft" ./ | tee >&2 | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Copyright Header Check' | ||
failOnStderr: true | ||
condition: succeededOrFailed() | ||
- script: gofmt -s -l -w $(find . -path ./vendor -prune -o -name '*.go' -print) >&2 | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Format Check' | ||
failOnStderr: true | ||
condition: succeededOrFailed() | ||
- script: | | ||
golint ./storage/... >&2 | ||
golint ./tools/... >&2 | ||
workingDirectory: '$(sdkPath)' | ||
displayName: 'Linter Check' | ||
failOnStderr: true | ||
condition: succeededOrFailed() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.