Add CI for build #51
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: RocBuild 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: cmake -P rocsetup.cmake -p linux -a x64 -S . -B build -G Ninja && cmake --build build | |
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: "Enter Visual Studio Developer Command Prompt" | |
uses: TheMrMilchmann/setup-msvc-dev@v3 | |
with: | |
arch: x64 | |
- name: Build | |
run: cmake -P rocsetup.cmake -p vs2022 -a x64 -S . -B build -G Ninja && cmake --build build | |
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: cmake -P rocsetup.cmake -p macos -a x64 -S . -B build -G Ninja && cmake --build build |