Refactor build workflow and tests to remove profiling.json uploads, a… #25
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.31.0" | |
ninjaVersion: "^1.12.1" | |
- name: Build | |
run: python test.py | |
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.31.0" | |
ninjaVersion: "^1.12.1" | |
- name: Setup VS2022 Developer Command Prompt | |
run: | | |
"C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat" x64 | |
echo "VS2022 Developer Command Prompt is ready." | |
- name: Test Visual Studio | |
run: python test.py | |
- name: Test Ninja | |
run: python test.py -G Ninja | |
- name: Test Ninja Multi-Config | |
run: python test.py -G "Ninja Multi-Config" | |
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.31.0" | |
ninjaVersion: "^1.12.1" | |
- name: Build | |
run: python test.py |