-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: consolidate build checker workflows into a single file for …
…Windows, Ubuntu, and MacOS
- Loading branch information
1 parent
bbcd3dc
commit 72016b6
Showing
5 changed files
with
62 additions
and
79 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build Checker Windows | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
- 'ga-ignore-**' | ||
- 'gh-pages' | ||
|
||
jobs: | ||
build_checker_windows: | ||
name: Build Checker Windows | ||
runs-on: windows-latest | ||
steps: | ||
- name: Set up Git repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
choco install cmake -y | ||
- name: Configure and Build | ||
run: | | ||
mkdir build && cd build | ||
cmake .. && cmake --build . | ||
build_checker_ubuntu: | ||
name: Build Checker Ubuntu | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Git repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
sudo apt update | ||
sudo apt install cmake | ||
- name: Configure and Build | ||
run: | | ||
mkdir build && cd build | ||
cmake .. && cmake --build . | ||
build_checker_macos: | ||
name: Build Checker MacOS | ||
runs-on: macos-latest | ||
steps: | ||
- name: Set up Git repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
brew install cmake | ||
brew install ninja | ||
- name: Configure and Build | ||
run: | | ||
mkdir build && cd build | ||
cmake -G Ninja .. && ninja |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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