Green Sky
fd4c16d090
671b1f92332 fix: toxav rtp temp buffer allocation size was too large and cast from 32bit to 16bit, causing a overflow and making the allocated size too small 258148bd4e1 chore(ci): new minimum for all android versions is 21 d369c93c489 chore: Fix Emscripten build failing with no host specified 51b24d1c239 chore: Run CompCert on the stable branch of libsodium cab1f7d522b chore: Update WineHQ's apt key hash 102a1fa9b82 chore: Fix -Werror=maybe-uninitialized in a test cc9515da9c7 chore: Fix cpplint failing to install 3485b5feef3 chore: Disable -Wswitch-default and -Wunsafe-buffer-usage 719041e04b6 chore: Fix Circle CI failing on a missing clang lib 5344d7f84d0 fix: Memory leak in the bootstrap daemon fa201681e18 cleanup: Remove useless if clause 7572888a218 chore: Fix GitHub actions deprecation warnings git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 671b1f92332a8314dccf76d5df93c0b6c1230636
201 lines
5.7 KiB
YAML
201 lines
5.7 KiB
YAML
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:
|
|
fail-fast: false
|
|
matrix:
|
|
tool: [autotools, clang-tidy, compcert, cppcheck, doxygen, goblint, infer, freebsd, misra, modules, pkgsrc, rpm, slimcc, sparse, tcc, tokstyle]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
driver: docker
|
|
- name: Build toxchat/c-toxcore:sources
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
file: other/docker/sources/sources.Dockerfile
|
|
tags: toxchat/c-toxcore:sources
|
|
- name: Docker Build
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
file: other/docker/${{ matrix.tool }}/${{ 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
|
|
|
|
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
|
|
|
|
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-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
|
|
|
|
build-macos:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- name: Build and test
|
|
run: .github/scripts/cmake-osx
|
|
|
|
build-windows-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@v7
|
|
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 -j $([int]$env:NUMBER_OF_PROCESSORS+2)
|
|
- name: Test
|
|
run: |
|
|
cd _build
|
|
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:6 --build-config Debug
|
|
|
|
build-netbsd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- name: Test in NetBSD
|
|
id: test
|
|
uses: vmactions/netbsd-vm@v1
|
|
with:
|
|
usesh: true
|
|
copyback: false
|
|
prepare:
|
|
/usr/sbin/pkg_add
|
|
cmake
|
|
googletest
|
|
libconfig
|
|
libopus
|
|
libsodium
|
|
libvpx
|
|
pkg-config
|
|
|
|
run: |
|
|
# TODO(iphydf): Investigate NetBSD failures on these tests.
|
|
sed -Ei -e '/\((TCP|dht_getnodes_api)\)/s/^/#/' auto_tests/CMakeLists.txt
|
|
cmake . \
|
|
-DMIN_LOGGER_LEVEL=TRACE \
|
|
-DMUST_BUILD_TOXAV=ON \
|
|
-DNON_HERMETIC_TESTS=ON \
|
|
-DTEST_TIMEOUT_SECONDS=90 \
|
|
-DUSE_IPV6=OFF \
|
|
-DAUTOTEST=ON
|
|
cmake --build . --target install
|
|
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:6
|
|
|
|
build-freebsd:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
- name: Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/freebsd-vm@v1
|
|
with:
|
|
usesh: true
|
|
copyback: false
|
|
prepare:
|
|
PAGER=cat ASSUME_ALWAYS_YES=YES pkg install
|
|
cmake
|
|
git
|
|
gmake
|
|
googletest
|
|
libconfig
|
|
libsodium
|
|
libvpx
|
|
opus
|
|
pkgconf
|
|
|
|
run: |
|
|
# TODO(iphydf): Investigate FreeBSD failures on these tests.
|
|
sed -Ei -e '/\(dht_getnodes_api\)/s/^/#/' auto_tests/CMakeLists.txt
|
|
cmake . \
|
|
-DMIN_LOGGER_LEVEL=TRACE \
|
|
-DMUST_BUILD_TOXAV=ON \
|
|
-DNON_HERMETIC_TESTS=ON \
|
|
-DTEST_TIMEOUT_SECONDS=50 \
|
|
-DUSE_IPV6=OFF \
|
|
-DAUTOTEST=ON
|
|
cmake --build . --target install
|
|
ctest -j50 --output-on-failure --rerun-failed --repeat until-pass:6
|
|
|
|
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
|