aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils.Cryptography/argon2/Taskfile.yaml
blob: 73fb8fafa65b437c9537c262f8d0bbac7ddab85a (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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# https://taskfile.dev

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

#This taskfile is called in this directory and is specific to the phc-winner-argon2 project
#that handles the MSBuild outside of the solution file

version: '3'

vars:
  PROJECT_NAME: 'Argon2'
  MODULE_NAME: 'vnlib.core'

tasks:

  default:
    desc: "Builds the entire project from source code without using the VNBuild build system for target machines"
    cmds:
      #build with defaults
      - task: build
      - cmd: echo "Your Argon2 dll file can be found in '{{.USER_WORKING_DIR}}/build'"
        silent: true
  
  build:
    cmds:
     #init cmake build with greedy enabled
     - cmake -B./build
 
     - cmake --build build/ --config Debug
     - cmake --build build/ --config Release 

 
  postbuild_success:
    vars:
      #required files to include in tar
      TAR_FILES: "license.txt readme.txt argon2.h"
    
    cmds:
      #make bin dir
    - cmd: powershell -Command "New-Item -Type Directory -Force -Path './bin'"
      ignore_error: true

    #add embeded resources to output dirs
    - task: embed
      vars: 
        TARGET: './build/Debug'

    - task: embed
      vars:
        TARGET: './build/Release'
   

    #static debug lib
    - cd build/Debug && tar -czf '../../bin/msvc-x64-debug-{{.PROJECT_NAME}}-static.tgz' {{.PROJECT_NAME}}_static.lib {{.TAR_FILES}} {{.PROJECT_NAME}}_static.pdb
    #dynamic debug lib
    - cd build/Debug && tar -czf '../../bin/msvc-x64-debug-{{.PROJECT_NAME}}.tgz' {{.PROJECT_NAME}}.dll {{.TAR_FILES}} {{.PROJECT_NAME}}.pdb
    
    #release static lib
    - cd build/Release && tar -czf '../../bin/msvc-x64-release-{{.PROJECT_NAME}}-static.tgz' {{.PROJECT_NAME}}_static.lib {{.TAR_FILES}}
    #release dll
    - cd build/Release && tar -czf '../../bin/msvc-x64-release-{{.PROJECT_NAME}}.tgz' {{.PROJECT_NAME}}.dll {{.TAR_FILES}}

    #source code
    - task: pack_source

  embed:
    cmds:
     #add license file
     - powershell -Command "Copy-Item -Path ./license -Destination '{{.TARGET}}/license.txt'"
     #add readme file
     - powershell -Command "Copy-Item -Path ./build.readme.txt -Destination '{{.TARGET}}/readme.txt'"
     #add argon2 header file
     - powershell -Command "Copy-Item -Path ./include/argon2.h -Destination '{{.TARGET}}/argon2.h'"
  
  pack_source:
    cmds:
     #just pack up current directory, excluding build, bin, and git directories
     - powershell -Command "tar --exclude build/* --exclude bin/* -czf bin/src.tgz ."


  clean:
    ignore_error: true
    cmds: 
     - cmd: powershell -Command "Remove-Item -Recurse './bin'"
     - cmd: powershell -Command "Remove-Item -Recurse './build'"