Skip to content

Commit

Permalink
test: Build toxcore on NetBSD (VM).
Browse files Browse the repository at this point in the history
  • Loading branch information
iphydf committed Feb 18, 2024
1 parent 9a8dfa0 commit a9f3da2
Showing 1 changed file with 152 additions and 119 deletions.
271 changes: 152 additions & 119 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,131 +10,164 @@ concurrency:
cancel-in-progress: true

jobs:
common:
uses: TokTok/ci-tools/.github/workflows/common-ci.yml@master
# 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, misra, modules, 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@v4
# with:
# file: other/docker/sources/sources.Dockerfile
# tags: toxchat/c-toxcore:sources
# - name: Docker Build
# uses: docker/build-push-action@v4
# 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-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 -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-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

analysis:
strategy:
fail-fast: false
matrix:
tool: [autotools, clang-tidy, compcert, cppcheck, doxygen, goblint, infer, misra, modules, 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@v4
with:
file: other/docker/sources/sources.Dockerfile
tags: toxchat/c-toxcore:sources
- name: Docker Build
uses: docker/build-push-action@v4
with:
file: other/docker/${{ matrix.tool }}/${{ matrix.tool }}.Dockerfile

coverage-linux:
build-netbsd:
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
- name: Test in NetBSD
id: test
uses: vmactions/netbsd-vm@v1
with:
submodules: recursive
- name: Run generate_event_c
run: |
other/event_tooling/run
git diff --exit-code
usesh: true
copyback: false
prepare:
/usr/sbin/pkg_add
cmake
googletest
libconfig
libopus
libsodium
libvpx
pkg-config

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]")
run: |
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-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-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 -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-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

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
# 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

0 comments on commit a9f3da2

Please sign in to comment.