-
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
93 changed files
with
43,088 additions
and
5,101 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: CI Linux/Clang | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
clang-ubuntu-20-04: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build project | ||
run: | | ||
cd build | ||
make -f clang_makefile all | ||
- name: Run tests | ||
run: | | ||
cd build | ||
./fakeit_tests.exe | ||
clang-ubuntu-18-04: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build project | ||
run: | | ||
cd build | ||
make -f clang_makefile all | ||
- name: Run tests | ||
run: | | ||
cd build | ||
./fakeit_tests.exe |
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: CI Linux/GCC | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
coverage: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Install LCOV | ||
run: sudo apt install -y lcov | ||
- uses: actions/checkout@v2 | ||
- name: Build project | ||
run: | | ||
cd build | ||
make coverage | ||
- name: Run tests | ||
run: | | ||
cd build | ||
./fakeit_tests.exe | ||
- name: Generate report | ||
run: | | ||
cd build | ||
gcov *.o | ||
lcov --directory . -c -o report.info | ||
lcov --remove report.info '/usr/*' '*/tests/*' -o report_filtered.info | ||
- name: Upload report | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
path-to-lcov: ./build/report_filtered.info | ||
gcc-ubuntu-20-04: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build project | ||
run: | | ||
cd build | ||
make all | ||
- name: Run tests | ||
run: | | ||
cd build | ||
./fakeit_tests.exe | ||
gcc-ubuntu-18-04: | ||
runs-on: ubuntu-18.04 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Build project | ||
run: | | ||
cd build | ||
make all | ||
- name: Run tests | ||
run: | | ||
cd build | ||
./fakeit_tests.exe |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Don't generate single header files in your pull request, only modify the original files (the ones inside the `include` folder). | ||
|
||
Add unit tests for your development or at least provide examples on how to test your changes in your pull request. |
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 |
---|---|---|
@@ -1,2 +1,10 @@ | ||
image: | ||
- Visual Studio 2019 | ||
- Visual Studio 2015 | ||
|
||
configuration: | ||
- Debug | ||
- Release | ||
|
||
build: | ||
project: tests\all_tests.sln |
Oops, something went wrong.