/
githubmirror
/
zstd
Обзор
Документация
Войти
/
githubmirror
/
zstd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
.github/workflows/cmake-tests.yml
168 строк
7 KB
dependabot[bot]
Bump microsoft/setup-msbuild from 2.0.0 to 3.0.0
01 апр 2026, 08:50
Не верифицирован
01 апр 2026, 08:50
5fc4931
Код
Авторство
О чём код?
name: cmake-tests # CMake-specific build and test workflows # This workflow validates zstd builds across different CMake configurations, # platforms, and edge cases to ensure broad compatibility. concurrency: group: cmake-${{ github.ref }} cancel-in-progress: true on: pull_request: branches: [ dev, release, actionsTest ] permissions: read-all env: # Centralized test timeouts for consistency QUICK_TEST_TIME: "30s" STANDARD_TEST_TIME: "1mn" # Common CMake flags COMMON_CMAKE_FLAGS: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DZSTD_BUILD_TESTS=ON" jobs: # Basic cmake build using the root CMakeLists.txt # Provides a lightweight sanity check that the top-level project config builds # with the default Unix Makefiles generator driven purely through cmake commands cmake-root-basic: name: "CMake Root Build" runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag=v6.0.2 - name: Configure (Root) run: | cmake -S . -B cmake-build -DCMAKE_BUILD_TYPE=Release ${{ env.COMMON_CMAKE_FLAGS }} - name: Build (Root) run: | cmake --build cmake-build --config Release # Ubuntu-based cmake build using make wrapper # This test uses the make-driven cmake build to ensure compatibility # with the existing build system integration cmake-ubuntu-basic: name: "CMake build using make wrapper" runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag=v6.0.2 - name: Install dependencies run: | sudo apt install liblzma-dev # Required for compression algorithms - name: CMake build and test via make run: | # Use make wrapper for cmake build with quick test timeouts FUZZERTEST=-T${{ env.STANDARD_TEST_TIME }} ZSTREAM_TESTTIME=-T${{ env.STANDARD_TEST_TIME }} make cmakebuild V=1 # Cross-platform cmake build with edge case: source paths containing spaces # This test ensures cmake handles filesystem paths with spaces correctly # across different operating systems and build generators cmake-cross-platform-spaces: name: "CMake Cross-Platform (Spaces in Path)" runs-on: ${{ matrix.os }} strategy: matrix: include: - os: ubuntu-latest generator: "Unix Makefiles" name: "Linux" - os: windows-latest generator: "NMake Makefiles" name: "Windows NMake" - os: macos-latest generator: "Unix Makefiles" name: "macOS" env: SRC_DIR: "source directory with spaces" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag=v6.0.2 with: path: "${{ env.SRC_DIR }}" - uses: ilammy/msvc-dev-cmd@0b201ec74fa43914dc39ae48a89fd1d8cb592756 # v1.13.0 if: ${{ matrix.generator == 'NMake Makefiles' }} - name: "CMake build and install (${{ matrix.name }})" run: | # Test Release build with installation to verify packaging cmake -S "${{ env.SRC_DIR }}/build/cmake" -B build -DBUILD_TESTING=ON -G "${{ matrix.generator }}" -DCMAKE_BUILD_TYPE=Release --install-prefix "${{ runner.temp }}/install" cmake --build build --config Release cmake --install build --config Release # Windows-specific cmake testing with Visual Studio 2022 # Tests multiple generators and toolchains to ensure broad Windows compatibility # including MSVC (x64, Win32, ARM64), MinGW, and Clang-CL with various architectures and optimizations cmake-windows-comprehensive: name: "CMake Windows VS2022 (${{ matrix.name }})" runs-on: ${{ matrix.runner }} strategy: fail-fast: false matrix: include: - generator: "Visual Studio 17 2022" flags: "-A x64" name: "MSVC x64" runner: "windows-2022" cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DZSTD_BUILD_TESTS=ON" - generator: "Visual Studio 17 2022" flags: "-A Win32" name: "MSVC Win32" runner: "windows-2022" cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DZSTD_BUILD_TESTS=ON" - generator: "Visual Studio 17 2022" flags: "-A x64" name: "MSVC x64 (No ZSTD_BUILD_TESTS)" runner: "windows-2022" # Intentionally omit ZSTD_BUILD_TESTS to reproduce the CXX language configuration bug cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON" - generator: "Visual Studio 17 2022" flags: "-A ARM64" name: "MSVC ARM64" runner: "windows-11-arm" # githuh runner for WOA instance - generator: "MinGW Makefiles" flags: "" name: "MinGW" runner: "windows-2022" cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DZSTD_BUILD_TESTS=ON" - generator: "Visual Studio 17 2022" flags: "-T ClangCL" name: "Clang-CL" runner: "windows-2022" cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DZSTD_BUILD_TESTS=ON" - generator: "Visual Studio 17 2022" flags: "-T ClangCL -A x64 -DCMAKE_C_FLAGS=/arch:AVX2" name: "Clang-CL AVX2" runner: "windows-2022" cmake_extra_flags: "-DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DZSTD_BUILD_TESTS=ON" steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag=v6.0.2 - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@30375c66a4eea26614e0d39710365f22f8b0af57 # tag=v3.0.0 - name: "Configure CMake (${{ matrix.name }})" run: | cd build\cmake mkdir build cd build cmake.exe -G "${{matrix.generator}}" ${{matrix.flags}} -DCMAKE_BUILD_TYPE=Debug ${{ matrix.cmake_extra_flags }} -DZSTD_ZSTREAM_FLAGS=-T${{ env.QUICK_TEST_TIME }} -DZSTD_FUZZER_FLAGS=-T${{ env.QUICK_TEST_TIME }} -DZSTD_FULLBENCH_FLAGS=-i0 .. - name: "Build (${{ matrix.name }})" run: | cd build\cmake\build cmake.exe --build . - name: "Test (${{ matrix.name }})" run: | cd build\cmake\build ctest.exe -V -C Debug # macOS ARM64 (Apple Silicon) specific cmake testing # Validates zstd builds and runs correctly on Apple Silicon architecture # Uses native ARM64 hardware for optimal performance and compatibility testing cmake-macos-arm64: name: "CMake macOS ARM64 (Apple Silicon)" runs-on: macos-14 # ARM64 runner steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # tag=v6.0.2 - name: "CMake build and test (ARM64)" run: | # Configure and build with ARM64-specific optimizations cd build/cmake mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release ${{ env.COMMON_CMAKE_FLAGS }} -DZSTD_ZSTREAM_FLAGS=-T${{ env.QUICK_TEST_TIME }} -DZSTD_FUZZER_FLAGS=-T${{ env.QUICK_TEST_TIME }} -DZSTD_FULLBENCH_FLAGS=-i1 .. make -j$(sysctl -n hw.ncpu) ctest -V