File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ jobs:
101101
102102 - name : Start server and run integration test for sentry-cli commands
103103 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"
105105
106106 - name : Upload test results
107107 if : always()
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
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 33readonly SAMPLE_MODULE=$1
44readonly JAVA_AGENT=$2
55readonly 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
612
713test/system-test-sentry-server-start.sh
814MOCK_SERVER_PID=$( cat sentry-mock-server.pid)
You can’t perform that action at this time.
0 commit comments