Let's profiling why cmake configure slow #18
Workflow file for this run
This file contains 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: CMake Build | |
on: | |
push: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up CMake | |
uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: "~3.30.0" | |
ninjaVersion: "^1.12.1" | |
- name: Build | |
run: python test.py | |
- name: Upload profiling.json | |
uses: actions/upload-artifact@v3 | |
with: | |
name: profiling-linux | |
path: profiling.json # 确保路径正确 | |
build_windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up CMake | |
uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: "~3.30.0" | |
ninjaVersion: "^1.12.1" | |
- name: Build | |
#run: python test.py | |
run: cmake -S tests/artifacts_path -B build/artifacts_path -G Ninja -DCMAKE_TOOLCHAIN_FILE="../../toolchains/Windows.MSVC.toolchain.cmake" | |
- name: Upload profiling.json | |
uses: actions/upload-artifact@v3 | |
with: | |
name: profiling-windows | |
path: profiling.json # 确保路径正确 | |
build_macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up CMake | |
uses: lukka/get-cmake@latest | |
with: | |
cmakeVersion: "~3.30.0" | |
ninjaVersion: "^1.12.1" | |
- name: Build | |
run: python test.py | |
- name: Upload profiling.json | |
uses: actions/upload-artifact@v3 | |
with: | |
name: profiling-macos | |
path: profiling.json # 确保路径正确 |