Skip to content

Commit 2bab635

Browse files
authored
fix: [DevOps] Fix failing e2e script (#555)
* test fix * test fix * test fix * apply fix, hide failing test (for test reasons) * re-introduce deleted code
1 parent ef9c826 commit 2bab635

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/e2e-test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ jobs:
4444
id: run_tests
4545
run: |
4646
if [ "${{ matrix.environment }}" = "canary" ]; then
47-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_CANARY }}"
47+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_CANARY }}'
4848
else
49-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_PRODUCTION }}"
49+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_PRODUCTION }}'
5050
fi
5151
5252
MVN_ARGS="${{ env.MVN_MULTI_THREADED_ARGS }} surefire:test -pl :spring-app -DskipTests=false"
@@ -74,9 +74,9 @@ jobs:
7474
- name: "Start Application Locally"
7575
run: |
7676
if [ "${{ matrix.environment }}" = "canary" ]; then
77-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_CANARY }}"
77+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_CANARY }}'
7878
else
79-
export AICORE_SERVICE_KEY="${{ secrets.AI_CORE_PRODUCTION }}"
79+
export AICORE_SERVICE_KEY='${{ secrets.AI_CORE_PRODUCTION }}'
8080
fi
8181
8282
cd sample-code/spring-app
@@ -114,4 +114,4 @@ jobs:
114114
- type: "section"
115115
text:
116116
type: "plain_text"
117-
text: "${{ steps.run_tests.outputs.error_message }}"
117+
text: "${{ steps.run_tests.outputs.error_message }} "

0 commit comments

Comments
 (0)