2023-07-25 11:53:09 +02:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
|
|
|
# Cancel old PR builds when pushing new commits.
|
|
|
|
concurrency:
|
|
|
|
group: build-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
common:
|
|
|
|
uses: TokTok/ci-tools/.github/workflows/common-ci.yml@master
|
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
analysis:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-01-12 21:30:48 +01:00
|
|
|
tool: [autotools, clang-tidy, compcert, cppcheck, doxygen, infer, misra, tcc, tokstyle]
|
2023-12-27 12:37:22 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Docker Build
|
|
|
|
uses: docker/build-push-action@v4
|
|
|
|
with:
|
2024-01-09 16:39:05 +01:00
|
|
|
file: other/docker/${{ matrix.tool }}/Dockerfile
|
2023-12-27 12:37:22 +01:00
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
coverage-linux:
|
2023-07-25 11:53:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-09 16:39:05 +01:00
|
|
|
- name: Build, test, and upload coverage
|
|
|
|
run: other/docker/coverage/run
|
2023-12-15 15:21:40 +01:00
|
|
|
|
2023-12-27 12:37:22 +01:00
|
|
|
generate-events:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Run generate_event_c
|
|
|
|
run: |
|
|
|
|
other/event_tooling/run
|
|
|
|
git diff --exit-code
|
|
|
|
|
2023-12-15 15:21:40 +01:00
|
|
|
cimplefmt:
|
2023-07-25 11:53:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-12-15 15:21:40 +01:00
|
|
|
- name: Run cimplefmt
|
|
|
|
run: other/docker/cimplefmt/run -u $(find tox* -name "*.[ch]")
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
build-android:
|
2023-07-25 11:53:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-09 16:39:05 +01:00
|
|
|
- run: .github/scripts/cmake-android armeabi-v7a
|
|
|
|
- run: .github/scripts/cmake-android arm64-v8a
|
|
|
|
- run: .github/scripts/cmake-android x86
|
|
|
|
- run: .github/scripts/cmake-android x86_64
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
build-macos:
|
|
|
|
runs-on: macos-latest
|
2023-07-25 11:53:09 +02:00
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-09 16:39:05 +01:00
|
|
|
- name: Build and test
|
|
|
|
run: .github/scripts/cmake-osx
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
build-msvc:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
version: [2019, 2022]
|
|
|
|
runs-on: windows-${{ matrix.version }}
|
|
|
|
env:
|
|
|
|
VCPKG_ROOT: "C:/vcpkg"
|
|
|
|
VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite"
|
2023-07-25 11:53:09 +02:00
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-09 16:39:05 +01:00
|
|
|
- name: Export GitHub Actions cache environment variables
|
|
|
|
uses: actions/github-script@v6
|
|
|
|
with:
|
|
|
|
script: |
|
|
|
|
core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || '');
|
|
|
|
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || '');
|
|
|
|
- name: Configure CMake
|
|
|
|
run: cmake --preset windows-default
|
|
|
|
- name: Build
|
|
|
|
run: cmake --build _build
|
|
|
|
- name: Test
|
|
|
|
run: |
|
|
|
|
cd _build
|
|
|
|
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:6 --build-config Debug
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
build-windows:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
bits: [32, 64]
|
2023-07-25 11:53:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-09 16:39:05 +01:00
|
|
|
- name: Cross compilation
|
|
|
|
run: .github/scripts/cmake-win${{ matrix.bits }} script
|
2023-07-25 11:53:09 +02:00
|
|
|
|
2024-01-09 16:39:05 +01:00
|
|
|
mypy:
|
2023-07-25 11:53:09 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-27 12:37:22 +01:00
|
|
|
- uses: actions/checkout@v4
|
2023-07-25 11:53:09 +02:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2024-01-09 16:39:05 +01:00
|
|
|
- name: Set up Python 3.9
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
python-version: 3.9
|
|
|
|
- name: Install mypy
|
|
|
|
run: pip install mypy
|
|
|
|
- name: Run mypy
|
|
|
|
run: |
|
|
|
|
(find . -name "*.py" -and -not -name "conanfile.py"; grep -lR '^#!.*python') \
|
|
|
|
| xargs -n1 -P8 mypy --strict
|