Skip to content

Commit bebcbc8

Browse files
committed
1 parent 6e585a0 commit bebcbc8

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ 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
3329
- name: Install testgen dependencies
3430
run: pip install -r requirements.txt
3531
- name: Configure App armor profile to allow testgen to use bubblewrap ## https://github.com/DevToys-app/DevToys/issues/1198#issuecomment-2985517203
@@ -47,7 +43,7 @@ jobs:
4743
with:
4844
switches: -avzr --delete
4945
path: reports/
50-
remote_path: validation-test-suite/1.8.0/
46+
remote_path: validation-test-suite/1.7.4/
5147
remote_host: upload.tlapl.us
5248
remote_user: github
5349
remote_key: ${{ secrets.INRIA_SSH_PRIVKEY }}

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"python.defaultInterpreterPath": "./venv/bin/python",
3+
"python.terminal.activateEnvironment": true,
4+
"python.analysis.autoImportCompletions": true,
5+
"python.analysis.typeCheckingMode": "basic"
6+
}

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.8.0', 'tla2tools.jar')
69+
tlc_jar = os.path.join(working_dir, 'tools', '1.7.4', '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/1.7.4/tla2tools.jar

2.17 MB
Binary file not shown.

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.8.0/tla2tools.jar \
31+
--classfiles ${TOOL_DIR}/1.7.4/tla2tools.jar \
3232
--html $1.report \
3333
--name the-report \
3434
${SOURCES}

0 commit comments

Comments
 (0)