-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from Morwenn/develop
Release 1.10.0
- Loading branch information
Showing
133 changed files
with
4,664 additions
and
1,539 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
.github/workflows/build-windows.yml → .github/workflows/build-mingw.yml
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,54 @@ | ||
# Copyright (c) 2021 Morwenn | ||
# SPDX-License-Identifier: MIT | ||
|
||
name: MSVC Builds | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/build-msvc.yml' | ||
- 'CMakeLists.txt' | ||
- 'cmake/**' | ||
- 'examples/**' | ||
- 'include/**' | ||
- 'testsuite/**' | ||
pull_request: | ||
paths: | ||
- '.github/workflows/build-msvc.yml' | ||
- 'CMakeLists.txt' | ||
- 'cmake/**' | ||
- 'examples/**' | ||
- 'include/**' | ||
- 'testsuite/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2019 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
build_type: [Debug, Release] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Configure CMake | ||
shell: pwsh | ||
working-directory: ${{runner.workspace}} | ||
run: | | ||
cmake -H${{github.event.repository.name}} -Bbuild ` | ||
-DCMAKE_CONFIGURATION_TYPES=${{matrix.build_type}} ` | ||
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} ` | ||
-G"Visual Studio 16 2019" -A x64 ` | ||
-DCPPSORT_BUILD_EXAMPLES=ON | ||
- name: Build the test suite | ||
working-directory: ${{runner.workspace}}/build | ||
run: cmake --build . --config ${{matrix.build_type}} -j 2 | ||
|
||
- name: Run the test suite | ||
env: | ||
CTEST_OUTPUT_ON_FAILURE: 1 | ||
working-directory: ${{runner.workspace}}/build | ||
run: ctest -C ${{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
Oops, something went wrong.