File tree 3 files changed +16
-10
lines changed
3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101
101
102
102
- name : Start server and run integration test for sentry-cli commands
103
103
run : |
104
- test/system-test-run.sh "${{ matrix.sample }}" "${{ matrix.agent }}" "${{ matrix.agent-auto-init }}"
104
+ test/system-test-run.sh "${{ matrix.sample }}" "${{ matrix.agent }}" "${{ matrix.agent-auto-init }}" "0"
105
105
106
106
- name : Upload test results
107
107
if : always()
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
- ./test/system-test-run.sh " sentry-samples-spring-boot" " 0" " true"
4
- ./test/system-test-run.sh " sentry-samples-spring-boot-opentelemetry-noagent" " 0" " true"
5
- ./test/system-test-run.sh " sentry-samples-spring-boot-opentelemetry" " 1" " true"
6
- ./test/system-test-run.sh " sentry-samples-spring-boot-opentelemetry" " 1" " false"
7
- ./test/system-test-run.sh " sentry-samples-spring-boot-webflux-jakarta" " 0" " true"
8
- ./test/system-test-run.sh " sentry-samples-spring-boot-webflux" " 0" " true"
9
- ./test/system-test-run.sh " sentry-samples-spring-boot-jakarta-opentelemetry-noagent" " 0" " true"
10
- ./test/system-test-run.sh " sentry-samples-spring-boot-jakarta-opentelemetry" " 1" " true"
11
- ./test/system-test-run.sh " sentry-samples-spring-boot-jakarta-opentelemetry" " 1" " false"
3
+ ./test/system-test-run.sh " sentry-samples-spring-boot" " 0" " true" " 0 "
4
+ ./test/system-test-run.sh " sentry-samples-spring-boot-opentelemetry-noagent" " 0" " true" " 0 "
5
+ ./test/system-test-run.sh " sentry-samples-spring-boot-opentelemetry" " 1" " true" " 0 "
6
+ ./test/system-test-run.sh " sentry-samples-spring-boot-opentelemetry" " 1" " false" " 0 "
7
+ ./test/system-test-run.sh " sentry-samples-spring-boot-webflux-jakarta" " 0" " true" " 0 "
8
+ ./test/system-test-run.sh " sentry-samples-spring-boot-webflux" " 0" " true" " 0 "
9
+ ./test/system-test-run.sh " sentry-samples-spring-boot-jakarta-opentelemetry-noagent" " 0" " true" " 0 "
10
+ ./test/system-test-run.sh " sentry-samples-spring-boot-jakarta-opentelemetry" " 1" " true" " 0 "
11
+ ./test/system-test-run.sh " sentry-samples-spring-boot-jakarta-opentelemetry" " 1" " false" " 0 "
Original file line number Diff line number Diff line change 3
3
readonly SAMPLE_MODULE=$1
4
4
readonly JAVA_AGENT=$2
5
5
readonly JAVA_AGENT_AUTO_INIT=$3
6
+ readonly BUILD_BEFORE_RUN=$4
7
+
8
+ if [[ " $BUILD_BEFORE_RUN " == " 1" ]]; then
9
+ echo " Building before Test run"
10
+ ./gradlew :sentry-samples:${SAMPLE_MODULE} :assemble
11
+ fi
6
12
7
13
test/system-test-sentry-server-start.sh
8
14
MOCK_SERVER_PID=$( cat sentry-mock-server.pid)
You can’t perform that action at this time.
0 commit comments