CI: Remove `grabpl integration-tests` (#61920)

These tests can also be run without it.
pull/61929/head
Horst Gutmann 2 years ago committed by GitHub
parent 8ddedf475b
commit 739fcf1796
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      .drone.yml
  2. 6
      scripts/drone/steps/lib.star

@ -3183,7 +3183,9 @@ steps:
name: mysql-integration-tests
- commands:
- dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests
- go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on:
- wire-install
environment:
@ -3192,7 +3194,9 @@ steps:
name: redis-integration-tests
- commands:
- dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests
- go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on:
- wire-install
environment:
@ -5831,7 +5835,9 @@ steps:
name: mysql-integration-tests
- commands:
- dockerize -wait tcp://redis:6379/0 -timeout 120s
- ./bin/grabpl integration-tests
- go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on:
- wire-install
environment:
@ -5840,7 +5846,9 @@ steps:
name: redis-integration-tests
- commands:
- dockerize -wait tcp://memcached:11211 -timeout 120s
- ./bin/grabpl integration-tests
- go clean -testcache
- go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic
-timeout=5m {}'
depends_on:
- wire-install
environment:
@ -6443,6 +6451,6 @@ kind: secret
name: aws_secret_access_key
---
kind: signature
hmac: 59d802aec2892f9bdd89caaa68d0a563cf14cedefe9e76646f3b734e69afa40d
hmac: 5b2831b92627887ebe7ee9963796449981a12a96ea775a331fb84536598536ce
...

@ -943,7 +943,8 @@ def redis_integration_tests_step():
},
'commands': [
'dockerize -wait tcp://redis:6379/0 -timeout 120s',
'./bin/grabpl integration-tests',
'go clean -testcache',
"go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic -timeout=5m {}'",
],
}
@ -958,7 +959,8 @@ def memcached_integration_tests_step():
},
'commands': [
'dockerize -wait tcp://memcached:11211 -timeout 120s',
'./bin/grabpl integration-tests',
'go clean -testcache',
"go list './pkg/...' | xargs -I {} sh -c 'go test -run Integration -covermode=atomic -timeout=5m {}'",
],
}

Loading…
Cancel
Save