-
Notifications
You must be signed in to change notification settings - Fork 5
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
90 additions
and
24 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
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,59 @@ | ||
# This starter workflow is for a CMake project running on multiple platforms. There is a different starter workflow if you just want a single platform. | ||
# See: https://github.com/actions/starter-workflows/blob/main/ci/cmake-single-platform.yml | ||
name: cmake ktm wasm test | ||
|
||
on: | ||
push: | ||
branches: [ "dev_v0.1.3" ] | ||
pull_request: | ||
branches: [ "dev_v0.1.3" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
|
||
strategy: | ||
fail-fast: false | ||
|
||
matrix: | ||
os: [macos-latest, ubuntu-latest, windows-latest] | ||
build_type: [Release] | ||
include: | ||
- os: macos-latest | ||
- os: ubuntu-latest | ||
- os: windows-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Setup emsdk | ||
uses: mymindstorm/setup-emsdk@v14 | ||
with: | ||
version: "latest" | ||
actions-cache-folder: 'emsdk-cache' | ||
|
||
- name: Set reusable strings | ||
id: strings | ||
shell: bash | ||
run: | | ||
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" | ||
echo "build-output-test-dir=${{ github.workspace }}/build/test" >> "$GITHUB_OUTPUT" | ||
- name: Configure CMake | ||
run: > | ||
cmake -B ${{ steps.strings.outputs.build-output-dir }} | ||
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} | ||
-DKTM_BUILD_TESTING=ON | ||
-DKTM_BUILD_WASM=ON | ||
-DCMAKE_TOOLCHAIN_FILE="$EMSDK/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake" | ||
-S ${{ github.workspace }} | ||
- name: Build | ||
run: cmake --build ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} | ||
|
||
- name: Test | ||
working-directory: ${{ steps.strings.outputs.build-output-test-dir }} | ||
run: ctest --build-config ${{ matrix.build_type }} | ||
|
||
- name: Install | ||
run: cmake --install ${{ steps.strings.outputs.build-output-dir }} --config ${{ matrix.build_type }} |
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,24 +1,19 @@ | ||
enable_testing() | ||
|
||
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC") | ||
add_compile_options(/std:c++17) | ||
add_compile_options(/source-charset:utf-8) | ||
add_compile_options(/execution-charset:utf-8) | ||
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") | ||
add_compile_options(-std=gnu++17) | ||
add_compile_options(-march=native) | ||
elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang" OR "${CMAKE_CXX_COMPILER_ID}" STREQUAL "AppleClang") | ||
add_compile_options(-std=gnu++17) | ||
add_compile_options(-Wc++17-extensions) | ||
add_compile_options(-march=native) | ||
endif() | ||
|
||
add_executable(geometry_test geometry_test.cpp) | ||
add_executable(matrix_test matrix_test.cpp) | ||
add_executable(quaternion_test quaternion_test.cpp) | ||
add_executable(vector_test vector_test.cpp) | ||
|
||
add_test(geometry_test geometry_test) | ||
add_test(matrix_test matrix_test) | ||
add_test(quaternion_test quaternion_test) | ||
add_test(vector_test vector_test) | ||
if(KTM_BUILD_WASM) | ||
find_program(NODE node) | ||
add_test(geometry_test ${NODE} geometry_test.js) | ||
add_test(matrix_test ${NODE} matrix_test.js) | ||
add_test(quaternion_test ${NODE} quaternion_test.js) | ||
add_test(vector_test ${NODE} vector_test.js) | ||
else() | ||
add_test(geometry_test geometry_test) | ||
add_test(matrix_test matrix_test) | ||
add_test(quaternion_test quaternion_test) | ||
add_test(vector_test vector_test) | ||
endif() |