Prototype SMT backend #881
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
name: Continuous Integration | |
on: | |
pull_request: | |
branches: | |
- main | |
- dev | |
push: | |
branches: | |
- main | |
- dev | |
- feat_smt | |
jobs: | |
forge-tests: | |
runs-on: ubuntu-latest | |
container: docker://racket/racket:8.3 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: '11' | |
- name: Install cvc5 for SMT (Theory of Relations) backend engine | |
run: | | |
apt-get update | |
apt-get install -y sudo | |
sudo apt-get update | |
sudo apt-get install -y cvc5 | |
- name: Install Forge | |
run: | | |
raco pkg install --auto --no-docs ./forge ./froglet | |
- name: Run tests | |
run: | | |
cd forge/ | |
chmod +x run-tests.sh | |
./run-tests.sh tests/ |