Skip to content

Commit

Permalink
update libsecp256k1 gha
Browse files Browse the repository at this point in the history
  • Loading branch information
BrettCleary committed Sep 28, 2023
1 parent c071931 commit 14c9c41
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build-libsecp256k1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,19 @@ jobs:
run: git clone https://github.com/bitcoin-core/secp256k1.git
- name: autogen
run: ./autogen.sh
working-directory: ./secp256k1
- name: configure
run: ./configure
run: ./configure --enable-module-ecdh --enable-module-recovery
working-directory: ./secp256k1
- name: build with cmake
run: make
working-directory: ./secp256k1
- name: run the test suite
run: make check
run: make check
working-directory: ./secp256k1
- name: Upload libsecp256k1.a for x86_64
uses: actions/upload-artifact@v3
with:
name: libsecp256k1_mac_x86_64.a
path: secp256k1/.libs/libsecp256k1.a
retention-days: 14

0 comments on commit 14c9c41

Please sign in to comment.