Build all including dafny #43
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: Make .smt2 files | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
contents: write | |
actions: write | |
jobs: | |
generate_smt2: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Install Z3 for newer version | |
uses: pavpanchekha/[email protected] | |
with: | |
version: 4.12.1 | |
distribution: 'glibc-2.35' | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Install Boogie | |
run: dotnet tool install --global boogie | |
- name: Make smt2 files | |
run: ./make_smt2.sh | |
# - name: Debugging with tmate | |
# uses: mxschmitt/[email protected] | |
- name: Merge in from main | |
run: | | |
git config --global user.email "gh-action[bot]@users.noreply.github.com" | |
git config --global user.name "gh-action[bot]" | |
git add -A | |
git stash | |
git fetch origin smt2 | |
git checkout FETCH_HEAD -b smt2 | |
git merge -X theirs main | |
git checkout main | |
git stash show && git stash pop || true | |
- name: Commit changes | |
run: | | |
git symbolic-ref HEAD refs/heads/smt2 | |
git add -A | |
git diff-index --quiet HEAD || git commit -m "Rebuild \".smt2\" files with new main" | |
git push -u origin smt2 |