We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4c391f commit 573bc65Copy full SHA for 573bc65
1 file changed
.github/workflows/e2e-test.yml
@@ -68,8 +68,9 @@ jobs:
68
- name: Run E2E tests as a deployment
69
run: |
70
eval $(minikube -p minikube docker-env)
71
- EXTRA_PROFILES=""
72
if [ "${{ matrix.sample }}" = "sample-operators/operations" ]; then
73
- EXTRA_PROFILES=",native"
+ ./mvnw -Pnative package -DskipTests -pl ${{ matrix.sample }}
+ ./mvnw jib:dockerBuild test -P end-to-end-tests,native -Dtest.deployment=remote -pl ${{ matrix.sample }}
74
+ else
75
+ ./mvnw jib:dockerBuild test -P end-to-end-tests -Dtest.deployment=remote -pl ${{ matrix.sample }}
76
fi
- ./mvnw package jib:dockerBuild test -P end-to-end-tests${EXTRA_PROFILES} -Dtest.deployment=remote -pl ${{ matrix.sample }}
0 commit comments