-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed workflows Removed working directory from CI scripts Working directory for CMake steps are taken care of using CMakePreset file Adjusted CMakePreset to match CI steps Revert CTest preset Switched to Ninja build from multi config Reverted Windows CI file
- Loading branch information
1 parent
6fa2523
commit 9174652
Showing
5 changed files
with
97 additions
and
33 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
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
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,76 @@ | ||
{ | ||
"version": 6, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 25, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "cmake-pedantic", | ||
"hidden": true, | ||
"warnings": { | ||
"dev": false, | ||
"uninitialized": false, | ||
"systemVars": false | ||
}, | ||
"errors": { | ||
"deprecated": true | ||
} | ||
}, | ||
{ | ||
"name": "ci-build", | ||
"binaryDir": "${sourceDir}/build", | ||
"hidden": true | ||
}, | ||
{ | ||
"name": "ninja", | ||
"generator": "Ninja", | ||
"hidden": true | ||
}, | ||
{ | ||
"name": "default", | ||
"displayName": "Basic configuration", | ||
"inherits": ["ci-build", "cmake-pedantic", "ninja"] | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "default-config-preset", | ||
"hidden": true, | ||
"configurePreset": "default" | ||
}, | ||
{ | ||
"name": "clean", | ||
"displayName": "Debug build", | ||
"targets" : "clean", | ||
"inherits": ["default-config-preset"] | ||
}, | ||
{ | ||
"name": "srecord-executables", | ||
"displayName": "Debug build", | ||
"targets" : "srecord-executables", | ||
"inherits": ["default-config-preset"] | ||
}, | ||
{ | ||
"name": "srecord-executables-version", | ||
"displayName": "Debug build", | ||
"inherits": ["default-config-preset"], | ||
"targets" : "srecord-executables-version" | ||
}, | ||
{ | ||
"name": "prepare-test", | ||
"displayName": "Debug build", | ||
"inherits": ["default-config-preset"], | ||
"targets" : "prepare-test" | ||
} | ||
], | ||
"testPresets": [ | ||
{ | ||
"name": "test", | ||
"configurePreset": "default", | ||
"output": {"outputOnFailure": true, "outputJUnitFile": "ctest.junit.xml"} | ||
|
||
} | ||
] | ||
} |