leo/.github/workflows/acl2.yml

94 lines
3.2 KiB
YAML
Raw Normal View History

2021-07-30 15:36:43 +03:00
name: Leo-ACL2
2021-08-31 20:23:11 +03:00
on: workflow_dispatch
env:
2021-07-30 15:36:43 +03:00
RUST_BACKTRACE: 1
2021-08-18 17:51:50 +03:00
# This job can only be run on linux (Ubuntu)
2021-07-30 15:36:43 +03:00
jobs:
acl2:
name: leo-acl2
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
2021-08-17 13:27:23 +03:00
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
2021-07-30 15:36:43 +03:00
2021-08-17 13:27:23 +03:00
- name: Generate asts
run: |
cargo -q run -p leo-test-framework --bin tgc
2021-07-30 15:36:43 +03:00
2021-08-17 13:27:23 +03:00
# Pull the latest release from the leo-acl2-bin repo, and put it into the
# repo/acl2 directory. After it's done, unpack the tgz file locally.
2021-08-18 17:51:50 +03:00
- name: Pull tgc executable
2021-07-30 15:36:43 +03:00
run: |
2021-08-17 13:27:23 +03:00
mkdir acl2 && cd acl2;
wget $( curl -s https://api.github.com/repos/AleoHQ/leo-acl2-bin/releases/latest \
| jq -r '.assets[0].browser_download_url' )
2021-08-17 10:44:44 +03:00
echo "Unpacking $(ls):"
2021-08-17 13:27:23 +03:00
tar -xvzf $(ls)
# Run theorem generation and checking using the prepared ASTs and the pulled and unzipped leo-acl2 tarball.
2021-08-18 17:51:50 +03:00
- name: Run tgc over ASTs
2021-08-17 13:27:23 +03:00
run: |
canonicalization_errors=();
type_inference_errors=();
num_dirs=0;
2021-08-17 13:27:23 +03:00
for dir in `ls tmp/tgc`;
do
cd tmp/tgc/$dir; # enter the directory
num_dirs=$((num_dirs + 1));
./../../../acl2/tgc canonicalization initial_ast.json canonicalization_ast.json canonicalization-theorem.lisp > canonicalization_result.out || canonicalization_errors+=("$dir");
2021-08-31 20:29:50 +03:00
./../../../acl2/tgc type-inference canonicalization_ast.json type_inferenced_ast.json type-inference-theorem.lisp > type_inference_result.out || type_inference_errors+=("$dir");
2021-08-17 13:27:23 +03:00
cd ../../..
done;
2021-08-18 14:53:18 +03:00
echo "----------------"
echo "Ran tgc in ${num_dirs} directories."
echo "----------------"
if [ ${#canonicalization_errors[@]} -eq 0 ]; then
echo "Canonicalization - Success!"
2021-08-18 14:53:18 +03:00
else
echo "Canonicalization Failures (total: ${#canonicalization_errors[@]}):"
2021-08-19 20:28:43 +03:00
for dir in ${canonicalization_errors[@]};
do
echo $dir
done;
2021-08-31 20:41:04 +03:00
#echo "Attaching logs:"
#for dir in ${canonicalization_errors[@]};
#do
# cat tmp/tgc/$dir/canonicalization_result.out
# cat tmp/tgc/$dir/canonicalization-theorem.lisp
#done;
fi
echo "----------------"
if [ ${#type_inference_errors[@]} -eq 0 ]; then
echo "Type Inference - Success!"
else
echo "Type Inference Failures (total: ${#type_inference_errors[@]}):"
2021-08-19 20:28:43 +03:00
for dir in ${type_inference_errors[@]};
do
echo $dir
done;
2021-08-31 20:41:04 +03:00
#echo "Attaching logs:"
#for dir in ${type_inference_errors[@]};
#do
# cat tmp/tgc/$dir/type_inference_result.out
#done;
fi
if [[ ${#canonicalization_errors[@]} -ne 0 || ${#type_inference_errors[@]} -ne 0 ]]; then
echo "----------------"
echo "Exiting with status 1 due to at least one tgc error."
2021-08-18 14:53:18 +03:00
exit 1
fi