Skip to content

Commit

Permalink
add more to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
marzer committed Sep 10, 2023
1 parent b92b9a7 commit 7e1b7aa
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
run: |
poxy --help
- name: Build and install doxygen
- name: Build and install doxygen from source
if: ${{ matrix.doxygen_tag != 'none' }}
run: |
cd "${{ github.workspace }}"
Expand All @@ -126,3 +126,17 @@ jobs:
CC=cc CC_LD=${{ matrix.linker }} CXX=c++ CXX_LD=${{ matrix.linker }} cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=MinSizeRel ..
CC=cc CC_LD=${{ matrix.linker }} CXX=c++ CXX_LD=${{ matrix.linker }} make -j
CC=cc CC_LD=${{ matrix.linker }} CXX=c++ CXX_LD=${{ matrix.linker }} sudo make install
- name: Install doxygen from apt
if: ${{ matrix.doxygen_tag == 'none' }}
run: |
sudo apt -y install doxygen
doxygen --version
- name: Run poxy on test_project
run: |
cd "${{ github.workspace }}/repo/tests/test_project"
poxy
poxy --xml
poxy --verbose
poxy --bug-report

0 comments on commit 7e1b7aa

Please sign in to comment.