Made Logika Auto and Smt2 justifications to subsume natural deduction… #2107
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: macOS | |
on: | |
push: | |
branches: | |
- "**" | |
tags: | |
- "!**" | |
jobs: | |
ci: | |
runs-on: macOS-latest | |
steps: | |
- name: Clean | |
run: | | |
rm -fR "$GITHUB_WORKSPACE/Sireum" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
path: Sireum | |
submodules: recursive | |
- name: Cache Java | |
id: cache-java | |
uses: actions/cache@v4 | |
with: | |
path: Sireum/bin/mac/java | |
key: ${{ runner.os }}-${{ hashFiles('Sireum/versions.properties') }}-java | |
- name: Cache Scala | |
id: cache-scala | |
uses: actions/cache@v4 | |
with: | |
path: Sireum/bin/scala | |
key: ${{ runner.os }}-${{ hashFiles('Sireum/versions.properties') }}-scala | |
- name: Cache Coursier | |
id: cache-coursier | |
uses: actions/cache@v4 | |
with: | |
path: Sireum/cache/coursier | |
key: ${{ runner.os }}-${{ hashFiles('Sireum/versions.properties') }}-coursier | |
- name: Cache Graal | |
id: cache-graal | |
uses: actions/cache@v4 | |
with: | |
path: Sireum/bin/mac/graal | |
key: ${{ runner.os }}-${{ hashFiles('Sireum/bin/install/graal.cmd') }}-graal | |
- name: Cache OSATE | |
id: cache-osate | |
uses: actions/cache@v4 | |
with: | |
path: Sireum/bin/mac/osate.app | |
key: ${{ runner.os }}-${{ hashFiles('Sireum/hamr/codegen/jvm/src/main/resources/phantom_versions.properties') }}-osate | |
- name: Test | |
run: | | |
export COURSIER_CACHE=$GITHUB_WORKSPACE/Sireum/cache/coursier | |
cd $GITHUB_WORKSPACE/Sireum | |
.ci/build.sh && .ci/build.sh test-verify | |
#.ci/mac-native.sh # need large runner | |
#rm bin/mac/sireum |