Skip to content

Update ci-docs.yaml #11

Update ci-docs.yaml

Update ci-docs.yaml #11

Workflow file for this run

name: ci-docs
on: [push, pull_request]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- uses: actions/checkout@v2
with:
repository: bitcoin-core/secp256k1
path: libsecp256k1
- name: Build and install libsecp256k1
run: |
cd libsecp256k1
./autogen.sh
./configure --enable-module-recovery --enable-benchmark=no --enable-tests=no
make
sudo make install
pkg-config --cflags --libs libsecp256k1
- name: Build
- name: Install dependencies
run:
pip install -r docs/requirements.txt
- name: Build docs
run: |
mkdir build
cd build
cmake -DETHC_BUILD_DOCS=ON ..
make doxygen
make sphinx