2021-12-13 23:36:50 +08:00
|
|
|
name: ci
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches: [master]
|
|
|
|
|
2022-02-24 07:35:03 +08:00
|
|
|
# Cancel old PR builds when pushing new commits.
|
|
|
|
concurrency:
|
|
|
|
group: build-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-12-13 23:36:50 +08:00
|
|
|
jobs:
|
2022-02-14 18:26:59 +08:00
|
|
|
common:
|
|
|
|
uses: TokTok/ci-tools/.github/workflows/common-ci.yml@master
|
|
|
|
|
2023-12-27 20:19:53 +08:00
|
|
|
analysis:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
tool: [autotools, clang-tidy, compcert, cppcheck, doxygen, misra, tcc, tokstyle]
|
2023-12-27 06:02:58 +08: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:
|
2023-12-27 20:19:53 +08:00
|
|
|
file: other/docker/${{ matrix.tool }}/Dockerfile
|
2023-12-27 06:02:58 +08:00
|
|
|
|
2023-12-27 20:19:53 +08:00
|
|
|
coverage-linux:
|
2022-01-14 21:03:32 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-20 03:54:51 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-12-27 20:19:53 +08:00
|
|
|
- name: Build, test, and upload coverage
|
|
|
|
run: other/docker/coverage/run
|
2023-11-18 13:46:19 +08:00
|
|
|
|
|
|
|
cimplefmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-20 03:54:51 +08:00
|
|
|
- uses: actions/checkout@v4
|
2023-11-18 13:46:19 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Run cimplefmt
|
|
|
|
run: other/docker/cimplefmt/run -u $(find tox* -name "*.[ch]")
|
2021-12-20 09:39:24 +08:00
|
|
|
|
2023-12-25 20:45:19 +08:00
|
|
|
build-android:
|
2021-12-20 09:39:24 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-20 03:54:51 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-12-25 20:45:19 +08: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
|
2021-12-21 00:57:11 +08:00
|
|
|
|
2021-12-29 07:25:34 +08:00
|
|
|
build-macos:
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
2023-12-20 03:54:51 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2021-12-29 07:25:34 +08:00
|
|
|
- name: Build and test
|
2022-01-10 09:17:46 +08:00
|
|
|
run: .github/scripts/cmake-osx
|
2021-12-31 04:58:35 +08:00
|
|
|
|
2023-12-25 20:45:19 +08: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"
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- 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
|
|
|
|
|
|
|
|
build-windows:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
bits: [32, 64]
|
2022-01-06 03:43:44 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-20 03:54:51 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-12-25 20:45:19 +08:00
|
|
|
- name: Cross compilation
|
|
|
|
run: .github/scripts/cmake-win${{ matrix.bits }} script
|
2022-01-06 03:43:44 +08:00
|
|
|
|
2023-12-27 20:19:53 +08:00
|
|
|
mypy:
|
2022-02-11 06:30:44 +08:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-12-20 03:54:51 +08:00
|
|
|
- uses: actions/checkout@v4
|
2022-03-25 02:16:45 +08:00
|
|
|
with:
|
|
|
|
submodules: recursive
|
2023-12-27 20:19:53 +08: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
|