We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c0e1ea commit ef86dccCopy full SHA for ef86dcc
.github/workflows/e2e-tests.yml
@@ -62,6 +62,12 @@ jobs:
62
path: .
63
- run: docker load < olm-image.tar
64
65
+ # install ginkgo
66
+ - run: |
67
+ echo "Installing ginkgo"
68
+ GOBIN=$(pwd)/tools go install github.com/onsi/ginkgo/v2/ginkgo@$(cat go.mod | grep "github.com/onsi/ginkgo/v2" | awk '{ print $2 }')
69
+ E2E_LABELS=$(./tools/ginkgo ./test/e2e | grep -o '\[.*\]' | sed 's/^\[\(.*\)\]$/\1/')
70
+
71
# set e2e environment variables
72
# Set ginkgo output and parallelism
73
- run: echo "GINKGO_OPTS=-output-dir ${ARTIFACT_DIR} -junit-report junit_e2e.xml -nodes ${E2E_NODES}" >> $GITHUB_ENV
0 commit comments