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 664968d commit 3c61737Copy full SHA for 3c61737
.github/workflows/build.yml
@@ -47,8 +47,9 @@ jobs:
47
- run: ./gradlew -x build test -Dtest.profile=integration
48
49
- name: Verify probe connected
50
- run: resp=$(curl --insecure https://localhost:5445/clients) && [[ $(echo $resp | jq -r ."probes"[0]."meta"."language") == "java" ]] && echo $resp || (echo $resp && exit 1)
51
-
+ run: |
+ resp=$(curl --header "Authorization: Bearer ${{ env.SPP_JWT_TOKEN }}" --insecure https://localhost:5445/clients) && [[ $(echo $resp | jq -r ."probes"[0]."meta"."language") == "java" ]] && echo $resp || (echo $resp && exit 1)
52
+
53
- name: Live breakpoint (false condition)
54
run: |
55
docker exec spp-platform ./spp-cli developer add-live-breakpoint -c 1==2 VariableTests 26
0 commit comments