Skip to content

Commit

Permalink
GHA: build docs from BOOST_ROOT
Browse files Browse the repository at this point in the history
  • Loading branch information
sdarwin committed Oct 11, 2024
1 parent 8d2d399 commit b0cc39d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,13 +88,18 @@ jobs:
echo "using xsltproc ;" >> $HOME/user-config.jam
test -f $HOME/user-config.jam && cat $HOME/user-config.jam
- name: Build examples
- name: Build documentation method 1
run: |
cd $BOOST_ROOT
$BOOST_ROOT/b2 libs/geometry/doc/src/examples
./b2 libs/geometry/doc/
- name: Build documentation
- name: Build documentation method 2
run: |
cd $BOOST_ROOT
cd libs/geometry/doc
$BOOST_ROOT/b2
- name: Build examples
run: |
cd $BOOST_ROOT
$BOOST_ROOT/b2 libs/geometry/doc/src/examples

0 comments on commit b0cc39d

Please sign in to comment.