forked from fast-pack/FastPFor
-
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.
- Loading branch information
Showing
4 changed files
with
45 additions
and
2 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,16 @@ | ||
name: Macos-CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
macos-build: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Use cmake | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake .. | ||
cmake --build . | ||
ctest . --output-on-failure |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
name: Ubuntu-CI | ||
|
||
on: push | ||
on: [push, pull_request] | ||
|
||
|
||
|
||
jobs: | ||
|
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,26 @@ | ||
name: VS-CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
ci: | ||
name: windows-vs | ||
runs-on: windows-latest | ||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: Configure | ||
run: | | ||
cmake -B build | ||
- name: Build Debug | ||
run: cmake --build build --config Debug --verbose | ||
- name: Build Release | ||
run: cmake --build build --config Release --verbose | ||
- name: Run Release tests | ||
run: | | ||
cd build | ||
ctest -C Release -LE explicitonly --output-on-failure | ||
- name: Run Debug tests | ||
run: | | ||
cd build | ||
ctest -C Debug -LE explicitonly --output-on-failure |
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