blob: 00e972ff36fa63f09bd567859630efe90f70bacf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
name: uncrustify_test
on: [push, pull_request]
# Cancel any in-progress CI runs for a PR if it is updated
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
uncrustify:
name: ${{ matrix.build_type }} - ${{ matrix.generator }}
strategy:
matrix:
include:
- build_type: Debug
generator: Ninja
- build_type: Release
generator: Unix Makefiles
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: seanmiddleditch/gha-setup-ninja@master
- name: cmake-part-and-tests
env:
BADGE: linux
run: |
cmake -B build -G "${{ matrix.generator }}" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
cmake --build build
cd build
../scripts/run_ctest.py
|