name: Omath CI (Arch Linux / Windows) on: push: branches: [ main ] pull_request: branches: [ main ] concurrency: group: ci-${{ github.ref }} cancel-in-progress: true ############################################################################## # 1) Arch Linux – Clang / Ninja ############################################################################## jobs: arch-build-and-test: name: Arch Linux (Clang) runs-on: ubuntu-latest container: archlinux:latest env: VCPKG_ROOT: ${{ github.workspace }}/vcpkg steps: - name: Install basic tool-chain with pacman shell: bash run: | pacman -Sy --noconfirm archlinux-keyring pacman -Syu --noconfirm --needed \ git base-devel clang cmake ninja zip unzip fmt - name: Checkout repository (with sub-modules) uses: actions/checkout@v4 with: submodules: recursive - name: Set up vcpkg shell: bash run: | git clone https://github.com/microsoft/vcpkg "$VCPKG_ROOT" - name: Configure (cmake --preset) shell: bash run: cmake --preset linux-release-vcpkg -DOMATH_BUILD_TESTS=ON -DOMATH_BUILD_BENCHMARK=OFF -DVCPKG_MANIFEST_FEATURES="imgui;avx2;tests" - name: Build shell: bash run: cmake --build cmake-build/build/linux-release-vcpkg --target unit_tests omath - name: Run unit_tests shell: bash run: ./out/Release/unit_tests ############################################################################## # 2) Windows – MSVC / Ninja ############################################################################## windows-build-and-test: name: Windows (MSVC) runs-on: windows-latest env: OMATH_BUILD_VIA_VCPKG: ON steps: - name: Checkout repository (with sub-modules) uses: actions/checkout@v4 with: submodules: recursive - name: Install Ninja uses: seanmiddleditch/gha-setup-ninja@v4 - name: Set up MSVC developer command-prompt uses: ilammy/msvc-dev-cmd@v1 - name: Configure (cmake --preset) shell: bash run: cmake --preset windows-release-vcpkg -DOMATH_BUILD_TESTS=ON -DOMATH_BUILD_BENCHMARK=OFF -DVCPKG_MANIFEST_FEATURES="imgui;avx2;tests" - name: Build shell: bash run: cmake --build cmake-build/build/windows-release-vcpkg --target unit_tests omath - name: Run unit_tests.exe shell: bash run: ./out/Release/unit_tests.exe ############################################################################## # 3) macOS – AppleClang / Ninja ############################################################################## macosx-build-and-test: name: macOS (AppleClang) runs-on: macOS-latest env: VCPKG_ROOT: ${{ github.workspace }}/vcpkg steps: - name: Install basic tool-chain with Homebrew shell: bash run: | brew install cmake ninja - name: Checkout repository (with sub-modules) uses: actions/checkout@v4 with: submodules: recursive - name: Set up vcpkg shell: bash run: | git clone https://github.com/microsoft/vcpkg "$VCPKG_ROOT" - name: Configure (cmake --preset) shell: bash run: cmake --preset darwin-release-vcpkg -DOMATH_BUILD_TESTS=ON -DOMATH_BUILD_BENCHMARK=OFF -DVCPKG_MANIFEST_FEATURES="imgui;avx2;tests" - name: Build shell: bash run: cmake --build cmake-build/build/darwin-release-vcpkg --target unit_tests omath - name: Run unit_tests shell: bash run: ./out/Release/unit_tests ############################################################################## # 4) FreeBSD – Clang / Ninja ############################################################################## freebsd-build-and-test: name: FreeBSD (Clang) runs-on: ubuntu-latest steps: - name: Checkout repository (with sub-modules) uses: actions/checkout@v4 with: submodules: recursive - name: Build and Test uses: vmactions/freebsd-vm@v1 with: usesh: true sync: sshfs mem: 12288 copyback: false prepare: pkg install -y git curl zip unzip gmake llvm gsed bash perl5 openssl 7-zip coreutils cmake ninja pkgconf patchelf run: | git config --global --add safe.directory `pwd` # Build vcpkg in /tmp to avoid sshfs timestamp sync issues # This prevents PCH timestamp mismatches during parallel builds export VCPKG_ROOT=/tmp/vcpkg rm -rf "$VCPKG_ROOT" git clone https://github.com/microsoft/vcpkg "$VCPKG_ROOT" cd "$VCPKG_ROOT" # Bootstrap vcpkg - it will build from source on FreeBSD # Building in /tmp avoids sshfs timestamp issues that break PCH ./bootstrap-vcpkg.sh cd - export VCPKG_FORCE_SYSTEM_BINARIES=0 # VCPKG_ROOT is set to /tmp/vcpkg, which CMake will use via the preset cmake --preset freebsd-release-vcpkg -DOMATH_BUILD_TESTS=ON -DOMATH_BUILD_BENCHMARK=OFF -DVCPKG_MANIFEST_FEATURES="imgui;avx2;tests" -DVCPKG_INSTALL_OPTIONS="--allow-unsupported" cmake --build cmake-build/build/freebsd-release-vcpkg --target unit_tests omath ./out/Release/unit_tests