Skip to content

CI: run more examples proofs #295

CI: run more examples proofs

CI: run more examples proofs #295

Workflow file for this run

name: Build & Test
on:
pull_request:
branches: [main]
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- '4.14.1'
- '5.1.0'
env:
EXAMPLES_DIR: "tlaplus-examples"
SCRIPT_DIR: "tlaplus-examples/.github/scripts"
DEPS_DIR: "tlaplus-examples/deps"
DIST_DIR: "tlatools/org.lamport.tlatools/dist"
steps:
- name: Clone repo
uses: actions/checkout@v4
- name: Install deps (ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install --yes time
- uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- uses: actions/cache@v4
id: cache
with:
path: _build_cache
key: ${{ runner.os }}_build_cache
- name: Install optional dependencies
if: startsWith(matrix.ocaml-compiler, '5.')
run: |
eval $(opam env)
make opam-deps-opt
- name: Build TLAPM
run: |
eval $(opam env)
make opam-deps
# Workaround for https://github.com/tlaplus/tlapm/issues/88
set +e
for ((attempt = 1; attempt <= 5; attempt++)); do
make clean
make
if [ $? -eq 0 ]; then
make release
exit $?
fi
done
exit 1
- name: Run tests
run: |
eval $(opam env)
set +e
make test
TEST_RESULT=$?
cat _build/default/test/tests.log
exit $TEST_RESULT
- name: show logs for each test file
if: failure()
run: |
find test -type f \
-name '*.err' -o \
-name '*.out' \
-exec cat '{}' \;
- name: Check library proofs
run: |
find ./library -type f -iname "*_proofs.tla" -print0 |
xargs --null --max-args=1 ./_build/tlapm/bin/tlapm --cleanfp --stretch 5
- name: Clone tlaplus/examples
uses: actions/checkout@v4
with:
repository: tlaplus/examples
path: ${{ env.EXAMPLES_DIR }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Check proofs in TLA+ examples
run: |
mkdir -p "$DEPS_DIR"
cp ./_build/tlapm*.tar.gz "$DEPS_DIR/tlapm.tar.gz"
tar -xzf "$DEPS_DIR/tlapm.tar.gz" -C "$DEPS_DIR"
rm "$DEPS_DIR/tlapm.tar.gz"
mv $DEPS_DIR/tlapm* "$DEPS_DIR/tlapm-install"
SKIP=(
# Long-running
specifications/LoopInvariance/Quicksort.tla
specifications/LoopInvariance/SumSequence.tla
specifications/bcastByz/bcastByz.tla
specifications/MisraReachability/ReachabilityProofs.tla
specifications/byzpaxos/BPConProof.tla # Takes about 30 minutes
)
python "$SCRIPT_DIR/check_proofs.py" \
--tlapm_path "$DEPS_DIR/tlapm-install" \
--examples_root "$EXAMPLES_DIR" \
--skip "${SKIP[@]}"