Skip to content

Commit

Permalink
Added awesome doc publishing to CI [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerEnderlein authored May 5, 2024
1 parent b3e92d0 commit de555dc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: |
sudo apt-get -y update
sudo apt-get -y install freeglut3-dev libboost-dev
cmake -S . -B cmake_build_dir -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir
cmake -S . -B cmake_build_dir -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir -DCOIN_BUILD_AWESOME_DOCUMENTATION=ON
- name: Build project
run: cmake --build cmake_build_dir --target install --config Release -- -j4
- name: Run tests
Expand All @@ -32,6 +32,11 @@ jobs:
name: Ubuntu-Artifacts
path: cmake_install_dir/
if: always()
- name: Deploy Awesome Dcoumentation to Github Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: cmake_build_dir/html_awesome

windows-build:
name: Windows Build
Expand Down

0 comments on commit de555dc

Please sign in to comment.