Skip to content

Commit ef190ab

Browse files
authored
fix: Set the server and TCK related environment variables with the commands that use them (#243)
1 parent 96ea004 commit ef190ab

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/run-tck.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ env:
1515
TCK_VERSION: 0.3.0.alpha
1616
# Tells uv to not need a venv, and instead use system
1717
UV_SYSTEM_PYTHON: 1
18-
# SUT_JSONRPC_URL to use for the TCK
18+
# SUT_JSONRPC_URL to use for the TCK and the server agent
1919
SUT_JSONRPC_URL: http://localhost:9999
20-
# SUT_GRPC_URL to use for the TCK
21-
SUT_GRPC_URL: http://localhost:9000
2220

2321
# Only run the latest job
2422
concurrency:
@@ -57,7 +55,7 @@ jobs:
5755
- name: Build with Maven, skipping tests
5856
run: mvn -B install -DskipTests
5957
- name: Start SUT
60-
run: mvn -B quarkus:dev &
58+
run: SUT_GRPC_URL=http://localhost:9000 mvn -B quarkus:dev & #SUT_JSONRPC_URL already set
6159
working-directory: tck
6260
- name: Wait for SUT to start
6361
run: |

0 commit comments

Comments
 (0)