aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
blob: b7b991c9f6dc23719a1e374793b15e8c1106eb58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# https://taskfile.dev

#Called by the vnbuild system to produce builds for my website
#https://www.vaughnnugent.com/resources/software

#This taskfile performs the build operations for a module, it handles
#git code updates, msbuild on solutions, and sleet NuGet feed pushes.

#this file must be in the same directory as the solution file

version: '3'

tasks:

#called by build pipeline to sync repo
  update:
    cmds:
     - git reset --hard  
     - git remote update
     - 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:
    cmds:
     - echo "building module {{.MODULE_NAME}}"   

  publish:
    cmds:
     #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:
     #clean solution
     - cmd: powershell -Command "rm out/ -Recurse "
       ignore_error: true