Check Install #1558
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: Check Install | |
on: | |
schedule: | |
- cron: '0 6 * * *' | |
jobs: | |
ubuntu_20_04_install: | |
name: ubuntu-20.04 install | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup | |
run: sudo ./setup/ubuntu/20.04/install.sh | |
shell: bash | |
- name: run dreal | |
run: $(find /opt/dreal/ -name "dreal" -type f -executable) ./dreal/test/smt2/01.smt2 | |
ubuntu_22_04_install: | |
name: ubuntu 22.04 install | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: setup | |
run: sudo ./setup/ubuntu/22.04/install.sh | |
shell: bash | |
- name: run dreal | |
run: $(find /opt/dreal/ -name "dreal" -type f -executable) ./dreal/test/smt2/01.smt2 |