Skip to content

Commit

Permalink
Add file (non-)existence tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Ef55 committed Aug 4, 2024
1 parent 4a13154 commit 1e554ba
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ jobs:
opam install --confirm-level=unsafe-yes .
echo "::endgroup::"
echo "::group::Test for (non-)existence of installed files"
echo "bin/example" && [ ! -f /home/runner/work/Warblre/Warblre/_opam/bin/example ]
echo "bin/fuzzer" && [ ! -f /home/runner/work/Warblre/Warblre/_opam/bin/fuzzer ]
echo "bin/playground" && [ ! -f /home/runner/work/Warblre/Warblre/_opam/bin/playground ]
echo "doc/warblre/LICENSE" && [ -f /home/runner/work/Warblre/Warblre/_opam/doc/warblre/LICENSE ]
echo "doc/warblre-engines/LICENSE" "" && [ -f /home/runner/work/Warblre/Warblre/_opam/doc/warblre-engines/LICENSE ]
echo "lib/coq/user-contrib/Warblre" && [ -d /home/runner/work/Warblre/Warblre/_opam/lib/coq/user-contrib/Warblre ]
echo "lib/warblre-engines" && [ -d /home/runner/work/Warblre/Warblre/_opam/lib/warblre-engines ]
echo "::endgroup::"
echo "::group::Uninstall Warblre"
opam remove --confirm-level=unsafe-yes .
echo "::endgroup::"
Expand Down

0 comments on commit 1e554ba

Please sign in to comment.