1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00

Disable duplicate go integration tests (#1442)

This commit is contained in:
Daniel Kurzynski 2020-05-06 10:00:24 +02:00 committed by GitHub
parent 2c7c165e62
commit 1e252ea556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,20 +55,3 @@ jobs:
run: go mod tidy
- name: verify
run: git diff --name-only --exit-code
integration:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v1
with:
go-version: '1.13.x'
- name: checkout
uses: actions/checkout@v2
- name: build
env:
CGO_ENABLED: 0
# with `-tags release` we ensure that shared test utilities won't end up in the binary
run: go build -o piper -tags release
- name: test
env:
PIPER_INTEGRATION_GITHUB_TOKEN: ${{secrets.PIPER_INTEGRATION_GITHUB_TOKEN}}
run: go test -tags=integration ./integration/...