Skip to content

Commit

Permalink
Build static release binary and upload as artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
CyanoKobalamyne committed Sep 14, 2024
1 parent f719796 commit 51e5030
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ jobs:

- name: Configure (macOS)
if: runner.os == 'macOS'
run: ./configure.sh --debug --python
run: ./configure.sh --python

- name: Configure (non-macOS)
if: runner.os != 'macOS'
run: ./configure.sh --with-msat --debug --python
run: ./configure.sh --with-msat --python --static

- name: Build
run: |
Expand All @@ -88,3 +88,9 @@ jobs:

- name: Test Python Bindings
run: pytest ./tests

- name: Upload binary
uses: actions/upload-artifact@v4
with:
name: pono_${{ runner.arch }}
path: ./build/pono

0 comments on commit 51e5030

Please sign in to comment.