-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add GitHub action ci support
- Loading branch information
Showing
4 changed files
with
45 additions
and
6 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,35 @@ | ||
name: commit ci | ||
on: [push] | ||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
compiler: [g++, clang] | ||
steps: | ||
- name: Checkout last commit | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
submodules: "recursive" | ||
|
||
- name: Install dependency | ||
run: ./action-install-linux.sh | ||
|
||
- name: Unit test | ||
run: make test | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout last commit | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
submodules: "recursive" | ||
|
||
- name: Install dependency | ||
run: ./action-install-macos.sh | ||
|
||
- name: Unit test | ||
run: make xcode/test |
File renamed without changes.
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,10 @@ | ||
#!/bin/bash | ||
|
||
# install and build boost | ||
make xcode/thirdparty/boost | ||
|
||
export BOOST_ROOT="$(pwd)/thirdparty/src/boost_1_75_0" | ||
|
||
make xcode/thirdparty | ||
|
||
make xcode |
This file was deleted.
Oops, something went wrong.