refactor: Align group message sending with other send functions. #4300
Workflow file for this run
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: 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 | |
analysis: | |
strategy: | |
matrix: | |
tool: [autotools, clang-tidy, compcert, cppcheck, doxygen, misra, tcc, tokstyle] | |
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: | |
file: other/docker/${{ matrix.tool }}/Dockerfile | |
coverage-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build, test, and upload coverage | |
run: other/docker/coverage/run | |
cimplefmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Run cimplefmt | |
run: other/docker/cimplefmt/run -u $(find tox* -name "*.[ch]") | |
build-windows: | |
strategy: | |
matrix: | |
bits: [32, 64] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Cross compilation | |
run: .github/scripts/cmake-win${{ matrix.bits }} script | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build and test | |
run: .github/scripts/cmake-osx | |
build-android: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- 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 | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- 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 |