ci show cpu #7
This file contains hidden or 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: Windows Build | |
| on: | |
| push: | |
| branches: [ "main", "feat/win-compilation-merge-new" ] | |
| paths-ignore: | |
| - '**.md' | |
| merge_group: | |
| pull_request: | |
| branches: [ "main" ] | |
| paths-ignore: | |
| - '**.md' | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}-${{ github.ref != 'refs/heads/main' || github.sha }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Windows build and test matrix | |
| build-and-test-windows: | |
| name: Build & Test (${{ matrix.platform }}) | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - os: windows-2022 | |
| platform: windows-2022-x64 | |
| - os: windows-2025 | |
| platform: windows-2025-x64 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.10' | |
| cache: 'pip' | |
| cache-dependency-path: 'pyproject.toml' | |
| - name: Set up MSVC environment | |
| uses: ilammy/msvc-dev-cmd@v1 | |
| with: | |
| arch: x64 | |
| - name: Set up environment variables | |
| run: | | |
| Get-CimInstance -ClassName Win32_Processor | |
| $nproc = (Get-CimInstance Win32_ComputerSystem).NumberOfLogicalProcessors | |
| echo "NPROC=$nproc" >> $env:GITHUB_ENV | |
| echo "Using $nproc parallel jobs for builds" | |
| shell: pwsh | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip ` | |
| pybind11==3.0 ` | |
| cmake==3.30.0 ` | |
| ninja==1.11.1 ` | |
| pytest ` | |
| scikit-build-core ` | |
| setuptools_scm | |
| shell: pwsh | |
| - name: Build from source | |
| run: | | |
| cd "$env:GITHUB_WORKSPACE" | |
| $env:CMAKE_GENERATOR = "Ninja" | |
| $env:CMAKE_BUILD_PARALLEL_LEVEL = "$env:NPROC" | |
| python -m pip install -v . ` | |
| --no-build-isolation ` | |
| # --config-settings='build.verbose=true' ` | |
| # --config-settings='cmake.define.CMAKE_VERBOSE_MAKEFILE=ON' ` | |
| --config-settings='cmake.define.BUILD_TOOLS=ON' | |
| shell: pwsh | |
| - name: Run C++ Tests | |
| run: | | |
| cd "$env:GITHUB_WORKSPACE\build" | |
| cmake --build . --target unittest --config Release --parallel $env:NPROC | |
| shell: pwsh | |
| - name: Run Python Tests | |
| run: | | |
| cd "$env:GITHUB_WORKSPACE" | |
| python -m pytest python/tests/ | |
| shell: pwsh | |
| - name: Run C++ Examples | |
| run: | | |
| cd "$env:GITHUB_WORKSPACE\examples\c++" | |
| mkdir build | |
| cd build | |
| cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release | |
| cmake --build . --config Release --parallel $env:NPROC | |
| .\db-example.exe | |
| .\core-example.exe | |
| .\ailego-example.exe | |
| shell: pwsh |