-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add Lean testing in the CI (#871)
* feat(lean/run_tests): Test generated Lean code using Lean itself This reuses the various lean-toolchain information and download an ad-hoc Lean version based on this. Note: /bin/bash is not guaranteed to exist on all Linux distributions, NixOS does not have one. We prefer `/usr/bin/env` which should really (empirically) always exist. Signed-off-by: Raito Bezarius <[email protected]> Co-authored-by: Alasdair <[email protected]>
- Loading branch information
1 parent
4db7000
commit e7f1262
Showing
3 changed files
with
30 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/bin/bash | ||
#!/usr/bin/env bash | ||
|
||
SAIL_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
export SAIL_DIR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters