Skip to content

Commit 6e585a0

Browse files
committed
Run validation test suite against latest tla2tools.jar.
1 parent 959f2b2 commit 6e585a0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
with:
2727
distribution: adopt
2828
java-version: 17
29+
- name: Get (nightly) TLC
30+
run: |
31+
mkdir -p tools/1.8.0
32+
wget https://nightly.tlapl.us/dist/tla2tools.jar -O tools/1.8.0/tla2tools.jar
2933
- name: Install testgen dependencies
3034
run: pip install -r requirements.txt
3135
- name: Configure App armor profile to allow testgen to use bubblewrap ## https://github.com/DevToys-app/DevToys/issues/1198#issuecomment-2985517203
@@ -43,7 +47,7 @@ jobs:
4347
with:
4448
switches: -avzr --delete
4549
path: reports/
46-
remote_path: validation-test-suite/1.7.2/
50+
remote_path: validation-test-suite/1.8.0/
4751
remote_host: upload.tlapl.us
4852
remote_user: github
4953
remote_key: ${{ secrets.INRIA_SSH_PRIVKEY }}

testgen/runner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
def setup():
6767
global tlc_jar, apalache_jar, tmp_dir, jacoco_jar
6868
working_dir = os.getcwd()
69-
tlc_jar = os.path.join(working_dir, 'tools', '1.7.2', 'tla2tools.jar')
69+
tlc_jar = os.path.join(working_dir, 'tools', '1.8.0', 'tla2tools.jar')
7070
apalache_jar = os.path.join(working_dir, 'tools', 'apalache-0.28.0.jar')
7171
jacoco_jar = os.path.join(working_dir, 'tools', 'jacoco-0.8.8', 'jacocoagent.jar')
7272

tools/coverage_report.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ SOURCES="
2828
java \
2929
-jar ${TOOL_DIR}/jacoco-0.8.8/jacococli.jar \
3030
report $1 \
31-
--classfiles ${TOOL_DIR}/1.7.2/tla2tools.jar \
31+
--classfiles ${TOOL_DIR}/1.8.0/tla2tools.jar \
3232
--html $1.report \
3333
--name the-report \
3434
${SOURCES}

0 commit comments

Comments
 (0)