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 96ea004 commit ef190abCopy full SHA for ef190ab
.github/workflows/run-tck.yml
@@ -15,10 +15,8 @@ env:
15
TCK_VERSION: 0.3.0.alpha
16
# Tells uv to not need a venv, and instead use system
17
UV_SYSTEM_PYTHON: 1
18
- # SUT_JSONRPC_URL to use for the TCK
+ # SUT_JSONRPC_URL to use for the TCK and the server agent
19
SUT_JSONRPC_URL: http://localhost:9999
20
- # SUT_GRPC_URL to use for the TCK
21
- SUT_GRPC_URL: http://localhost:9000
22
23
# Only run the latest job
24
concurrency:
@@ -57,7 +55,7 @@ jobs:
57
55
- name: Build with Maven, skipping tests
58
56
run: mvn -B install -DskipTests
59
- name: Start SUT
60
- run: mvn -B quarkus:dev &
+ run: SUT_GRPC_URL=http://localhost:9000 mvn -B quarkus:dev & #SUT_JSONRPC_URL already set
61
working-directory: tck
62
- name: Wait for SUT to start
63
run: |
0 commit comments