diff options
author | vnugent <public@vaughnnugent.com> | 2024-05-04 13:55:19 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-05-04 13:55:19 -0400 |
commit | 0a40e209d03e8ff9b6f81cd5969d3e845c633bfc (patch) | |
tree | bbdfcb275ec0b66cfe84b7f8024258eef6c7aa5a /Taskfile.yaml | |
parent | 55fae189fffc86f07a3448370f0a746670819712 (diff) |
ci: Force disable testing for win ci builds
Diffstat (limited to 'Taskfile.yaml')
-rw-r--r-- | Taskfile.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml index a2c673a..6524c5c 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -87,11 +87,11 @@ tasks: DLL_FILES: '{{.PROJECT_NAME}}.dll {{.PROJECT_NAME}}.lib license.txt' TARGET_STATIC: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/msvc-x64-release-{{.PROJECT_NAME}}-static.tgz' STATIC_FILES: '{{.PROJECT_NAME}}_static.lib license.txt' - BUILD_DIR: 'out/build/win-x64' + BUILD_DIR: 'build/win-x64' cmds: #invoke cmake build - - cmake -S . -B {{.BUILD_DIR}} -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release + - cmake -S . -B {{.BUILD_DIR}} -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release -DNC_BUILD_TESTS=OFF - cmake --build {{.BUILD_DIR}} --config Release #copy license to build dir |