-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
092a561
commit 9975d67
Showing
3 changed files
with
65 additions
and
4 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
name: RocBuild test | ||
|
||
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: Test | ||
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: "Enter Visual Studio Developer Command Prompt" | ||
uses: TheMrMilchmann/setup-msvc-dev@v3 | ||
with: | ||
arch: x64 | ||
|
||
- name: Test | ||
run: python test.py | ||
|
||
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: Test | ||
run: python test.py |
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