From dc47d096400e7a4d95dd9516c72876c8ad016dcb Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 17 Oct 2024 23:33:46 -0400 Subject: update CI tests and run cross-platform unit testing --- Module.Taskfile.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'Module.Taskfile.yaml') diff --git a/Module.Taskfile.yaml b/Module.Taskfile.yaml index d31449a..b7b991c 100644 --- a/Module.Taskfile.yaml +++ b/Module.Taskfile.yaml @@ -17,11 +17,16 @@ tasks: cmds: - git reset --hard - git remote update - - git pull origin {{.BRANCH_NAME}} --verify-signatures + - git pull origin {{ .BRANCH_NAME }} --verify-signatures #updates the project versions for all inlcuded .NET projects - dotnet-gitversion.exe /updateprojectfiles + test: + desc: 'Builds and runs noscrypt unit tests for vnbuild CI systems' + cmds: + - cmd: task test -- -DNC_ENABLE_UTILS=ON + - cmd: wsl task test -- -DNC_ENABLE_UTILS=ON #called by build pipeline to build module build: @@ -33,7 +38,6 @@ tasks: #git archive in the module directory - git archive --format {{.ARCHIVE_FILE_FORMAT}} --output {{.ARCHIVE_FILE_NAME}} HEAD - #called by build pipeline to clean module clean: cmds: -- cgit