leo/.github/workflows/acl2.yml

71 lines
2.0 KiB
YAML
Raw Normal View History

2021-07-30 15:36:43 +03:00
name: Leo-ACL2
on:
2021-08-18 17:51:50 +03:00
pull_request:
push:
branches:
- master
- staging
- trying
paths-ignore:
- 'docs/**'
- 'documentation/**'
2021-07-30 15:36:43 +03:00
env:
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 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 \
| grep "browser_download_url.*.tgz" \
| cut -d : -f 2,3 \
| tr -d \" \
| xargs)
2021-08-17 10:44:44 +03:00
2021-08-17 13:27:23 +03:00
tar -xvzf $(ls)
# Using the prepared ASTs and the pulled and unzipped tgc run theorem generation.
2021-08-18 17:51:50 +03:00
- name: Run tgc over ASTs
2021-08-17 13:27:23 +03:00
run: |
2021-08-18 14:53:18 +03:00
errors=();
2021-08-17 13:27:23 +03:00
for dir in `ls tmp/tgc`;
do
cd tmp/tgc/$dir; # enter the directory
2021-08-18 14:53:18 +03:00
./../../../acl2/tgc canonicalization initial_ast.json canonicalization_ast.json canonicalization-theorem.lisp > result.out || errors+=("$dir");
2021-08-19 10:46:28 +03:00
./../../../acl2/tgc type-inference canonicalization_ast.json type_inferenced_ast.json type-inference-theorem.lisp || errors+=("$dir");
2021-08-17 13:27:23 +03:00
cd ../../..
done;
2021-08-18 14:53:18 +03:00
if [ ${#errors[@]} -eq 0 ]; then
echo "Success!"
else
echo "Failures:";
for i in ${errors[@]};
do
echo $i;
cat tmp/tgc/$dir.out
done;
exit 1
fi