Skip to content

Commit

Permalink
Add build doc
Browse files Browse the repository at this point in the history
  • Loading branch information
VladimirShaleev committed Feb 21, 2024
1 parent bae1ea9 commit bbd0946
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Doxygen
run: sudo apt-get -y install doxygen

- name: Configure CMake
run: >
cmake -B ${{ steps.strings.outputs.build-output-dir }} -S ${{ github.workspace }}
-DCMAKE_CXX_COMPILER=clang++
-DCMAKE_C_COMPILER=clang
-DCMAKE_BUILD_TYPE=Release
-DIPADDRESS_BUILD_TESTS=OFF
-DIPADDRESS_BUILD_DOC=ON
- name: Build
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config Release

# - run: mkdir docs
# - name: Install theme
# run: ./tools/prepare_doxygen.sh
Expand Down

0 comments on commit bbd0946

Please sign in to comment.