[v9.3.x] CI: Running Redis integration tests without grabpl (#63028) (#63073)

CI: Running Redis integration tests without grabpl (#63028)

This restores some changes from
https://github.com/grafana/grafana/pull/61920 that were accidentally
deleted.

(cherry picked from commit 2804acd264)
This commit is contained in:
Horst Gutmann
2023-02-08 04:26:12 -05:00
committed by GitHub
parent 10f04e19f0
commit e57ab953f8
2 changed files with 9 additions and 4 deletions
+7 -3
View File
@@ -3345,7 +3345,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:
@@ -6042,7 +6044,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:
@@ -6656,6 +6660,6 @@ kind: secret
name: aws_secret_access_key
---
kind: signature
hmac: a541f0c1a294987a42d43f561def70db4d92e1b0e753f1e59384b61ad224adbb
hmac: fff34e6f4039c1d3c805cc9b39ac71c991ee2b65c2cf8ca15382ebf5dc6f6432
...
+2 -1
View File
@@ -1142,7 +1142,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 {}'",
],
}