We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a6b92c commit c281e53Copy full SHA for c281e53
1 file changed
.github/workflows/CI.yml
@@ -144,11 +144,14 @@ jobs:
144
jq --join-output '
145
.modules
146
| map(select(has("proof")))
147
+ # Failing on Linux
148
| map(select(.path != "specifications/LoopInvariance/SumSequence.tla"))
149
+ # Takes 30 minutes to check
150
+ | map(select(.path != "specifications/byzpaxos/BPConProof.tla"))
151
| map(.path + "\u0000")
152
| join("")' \
153
| xargs --verbose --null --no-run-if-empty -I {TLA_FILE} \
- "$DEPS_DIR/tlapm/bin/tlapm" "{TLA_FILE}" -I "$DEPS_DIR/community" --stretch 5
154
+ time "$DEPS_DIR/tlapm/bin/tlapm" "{TLA_FILE}" -I "$DEPS_DIR/community" --stretch 5
155
- name: Smoke-test manifest generation script
156
run: |
157
python $SCRIPT_DIR/generate_manifest.py \
0 commit comments