Skip to content

Commit

Permalink
Update ci-docs.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mhw0 committed May 22, 2023
1 parent 8b1122a commit a3b2117
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,26 @@ jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: install dependencies
- uses: actions/checkout@v2
with:
repository: bitcoin-core/secp256k1
path: libsecp256k1
- name: Build and install libsecp256k1
run: |
brew install libtool automake
cd libsecp256k1
./autogen.sh
./configure --enable-module-recovery --enable-benchmark=no --enable-tests=no
make
sudo make install
pkg-config --cflags --libs libsecp256k1
- name: Install dependencies
run:
pip install -r docs/requirements.txt
- name: build
- name: Build docs
run: |
mkdir build
cd build
Expand Down

0 comments on commit a3b2117

Please sign in to comment.