-
Notifications
You must be signed in to change notification settings - Fork 42
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
1f376e5
commit 65f878a
Showing
3 changed files
with
43 additions
and
3 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 |
---|---|---|
|
@@ -31,5 +31,44 @@ jobs: | |
working-directory: ${{github.workspace}} | ||
run: | | ||
echo "::add-matcher::./.github/problem-matchers/gcc.json" | ||
cmake --build build --config Release | ||
cmake --build build --parallel --config Release | ||
echo "::remove-matcher owner=problem-matcher-gcc::" | ||
test: | ||
name: Test | ||
needs: build | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Fetch the package's repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup CMake | ||
uses: jwlawson/actions-setup-cmake@v2 | ||
with: | ||
cmake-version: '3.18' | ||
|
||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ${{ secrets.CCACHE_CACHE_VERSION }}|ubuntu-20.04-gcc-release | ||
create-symlink: true | ||
|
||
- name: Setup GTest | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -q -y --no-install-recommends libgtest-dev | ||
- name: Configure CMake | ||
working-directory: ${{github.workspace}} | ||
run: cmake -B build -DCMAKE_BUILD_TYPE=Release -DWAVEMAP_ENABLE_TESTING=ON library/cpp | ||
|
||
- name: Build tests | ||
working-directory: ${{github.workspace}} | ||
run: | | ||
echo "::add-matcher::./.github/problem-matchers/gcc.json" | ||
cmake --build build --parallel --config Release | ||
echo "::remove-matcher owner=problem-matcher-gcc::" | ||
- name: Run tests | ||
working-directory: ${{github.workspace}}/build | ||
run: ctest -C Release |
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,4 +1,3 @@ | ||
find_package(GTest REQUIRED) | ||
include(GoogleTest) | ||
|
||
add_subdirectory(src/core) | ||
|