Skip to content

Commit bd2ceeb

Browse files
committed
fix: Use an environment variable for the SUT URL
1 parent 7a2c520 commit bd2ceeb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/run-tck.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env:
1010
TCK_VERSION: 0.3.0.alpha
1111
# Tells uv to not need a venv, and instead use system
1212
UV_SYSTEM_PYTHON: 1
13+
SUT_JSONRPC_URL: http://localhost:8080
1314

1415

1516
# Only run the latest job
@@ -67,7 +68,7 @@ jobs:
6768
mvn wildfly:start -B -Dversion.sdk=${SDK_VERSION} -pl tck -Dstartup-timeout=120
6869
- name: Run TCK
6970
run: |
70-
./run_tck.py --sut-url http://localhost:8080 --category all --compliance-report report.json
71+
./run_tck.py --sut-url ${SUT_JSONRPC_URL} --category all --transports jsonrpc --compliance-report report.json
7172
working-directory: a2a-tck
7273
- name: Start the WildFly SUT
7374
run: |

0 commit comments

Comments
 (0)