File tree Expand file tree Collapse file tree 2 files changed +4
-17
lines changed Expand file tree Collapse file tree 2 files changed +4
-17
lines changed Original file line number Diff line number Diff line change 29
29
- name : target_branch
30
30
value : " {{ target_branch }}"
31
31
- name : results_url
32
- value : " https://github.com/openshift-pipelines /tektoncd-results"
32
+ value : " https://github.com/avinal /tektoncd-results"
33
33
timeouts :
34
34
pipeline : " 1h0m0s"
35
35
workspaces :
Original file line number Diff line number Diff line change 36
36
for service_account in "${service_accounts[@]}"; do
37
37
kubectl create token "$service_account" > "${SA_TOKEN_PATH}"/"$service_account"
38
38
done
39
- RESULT_ROUTE=$(kubectl get route tekton-results -n tekton-results --template='{{.spec.host}}')
40
- cat <<EOF > patch-test-config.patch
41
- diff --git a/test/e2e/grpc_client.go b/test/e2e/grpc_client.go
42
- --- a/test/e2e/grpc_client.go
43
- +++ b/test/e2e/grpc_client.go
44
- @@ -36,4 +36,4 @@ const (
45
- certFile = "tekton-results-cert.pem"
46
- - apiServerName = "tekton-results-api-service.tekton-pipelines.svc.cluster.local"
47
- - apiServerAddress = "localhost:50051"
48
- + apiServerName = "tekton-results-api-service.tekton-results.svc.cluster.local"
49
- + apiServerAddress = "$RESULT_ROUTE"
50
- defCertFolder = "/tmp/tekton-results/ssl"
51
-
52
- EOF
53
- git apply patch-test-config.patch
39
+ export API_SERVER_NAME="tekton-results-api-service.tekton-results.svc.cluster.local"
40
+ export API_SERVER_ADDR="https://$(kubectl get route tekton-results -n tekton-results --template='{{.spec.host}}'):443"
54
41
export CGO_ENABLED=0
55
- go test -v -count=1 --tags=e2e ./test/e2e/...
42
+ go test -v -count=1 --tags=e2e $(go list --tags=e2e ./test/e2e/... | grep -v /client)
You can’t perform that action at this time.
0 commit comments