aboutsummaryrefslogtreecommitdiff
path: root/Module.Taskfile.yaml
blob: 378facae37828720e59e86e7e216e6a59d5b3761 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# 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'

vars:
  INT_DIR: '{{.SCRATCH_DIR}}/obj/{{.MODULE_NAME}}/'
  MS_ARGS: '/p:RunAnalyzersDuringBuild=false /p:IntermediateOutputPath="{{.INT_DIR}}" /p:UseCommonOutputDirectory=true /p:BuildInParallel=true /p:MultiProcessorCompilation=true /p:ErrorOnDuplicatePublishOutputFiles=false'
  PACK_OUT: '{{.OUTPUT_DIR}}/{{.HEAD_SHA}}/pkg'

tasks:

#called by build pipeline to sync repo
  update:
    cmds:
     - git remote update
     - git reset --hard  
     - git pull origin {{.BRANCH_NAME}} --verify-signatures 
     #re-write semver after hard reset so build still works properly
     - dotnet-gitversion.exe /updateprojectfiles

#called by build pipeline to build module
  build:
    cmds:
     - echo "building module {{.MODULE_NAME}}" 
     
     #build debug mode first
     - task: build_debug
     - task: build_release

  postbuild_success:
    cmds:
     #push packages to the sleet feed (feed path is vnbuild global)
     - sleet push "{{.PACK_OUT}}/debug/" --source debug --config "{{.SLEET_CONFIG_PATH}}" --force
     - sleet push "{{.PACK_OUT}}/release/" --source release --config "{{.SLEET_CONFIG_PATH}}" --force

    #git archive in the module directory
     - git archive --format {{.ARCHIVE_FILE_FORMAT}} --output {{.ARCHIVE_FILE_NAME}} HEAD

  postbuild_failed:
    cmds:
     - echo "postbuild failed {{.MODULE_NAME}}"

#called by build pipeline to clean module
  clean:
    cmds:
     #clean solution
     - dotnet clean /p:BuildInParallel=true /p:MultiProcessorCompilation=true


#Internal tasks
  build_debug:
    internal: true
    cmds:
     - dotnet publish -c debug {{.MS_ARGS}}
     - dotnet pack -c debug {{.MS_ARGS}} -o "{{.PACK_OUT}}/debug/"
     
  build_release:
    internal: true
    cmds:
     - dotnet publish -c release {{.MS_ARGS}}
     - dotnet pack -c release {{.MS_ARGS}} -o "{{.PACK_OUT}}/release/"