add jcm_collect_subdirectory_targets; test #80
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JCM CI (Ubuntu) | |
on: | |
workflow_dispatch: | |
push: | |
paths-ignore: | |
- .github/workflows/macos.yaml | |
- .github/workflows/pages.yaml | |
- .github/workflows/windows.yaml | |
- docs/** | |
branches: | |
- main | |
pull_request: | |
paths-ignore: | |
- .github/workflows/macos.yaml | |
- .github/workflows/pages.yaml | |
- .github/workflows/windows.yaml | |
- docs/** | |
branches: | |
- main | |
jobs: | |
build-test-ubuntu: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
generator: ["Ninja", "Ninja Multi-Config", "Unix Makefiles"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install ninja-build | |
if: ${{ matrix.generator }} == "Ninja" | |
uses: seanmiddleditch/gha-setup-ninja@master | |
with: | |
version: 1.11.1 | |
- name: Install Doxygen for tests | |
run: | | |
sudo apt-get update | |
sudo apt-get install doxygen | |
- name: Configure tests target | |
run: cmake -G "${{ matrix.generator }}" --preset tests-ninja | |
- name: Format test code to ignore formatting errors | |
run: > | |
clang-format --style=file -i | |
$(find tests -name "*.hpp" -o -name "*.cpp" -o -name "*.h" -o -name "*.c") | |
- name: Run all automated tests | |
run: ctest --preset test-to-fail |