aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils.Cryptography/argon2/Taskfile.yaml
blob: 48c3d6c8f4385dfd7f0125eb2b6c2ae3c140b8fe (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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# 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:
  MS_ARGS: '/p:Platform=x64 /p:RunAnalyzersDuringBuild=false /p:BuildInParallel=true /p:MultiProcessorCompilation=true'
  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

     #build the rpmalloc library in debug mode first 
     - task: build-win
     - task: build-gnumake  

  #build using msbuild for rpmalloc libraries for debug and release modes
  build-win:
    platforms: ['windows']
    internal: true
    cmds:
     #build solution in debug mode
     - cd build && msbuild {{.PROJECT_NAME}}.sln /p:Configuration=debug {{.BUILD_FLAGS}} {{.MS_ARGS}} 
     #build in release
     - cd build && msbuild {{.PROJECT_NAME}}.sln /p:Configuration=release {{.BUILD_FLAGS}} {{.MS_ARGS}} 
  
  #build using gnu make
  build-gnumake:
    platforms: ['linux']
    internal: true
    cmds:
     #build project with make
     - cd build && make
 
  postbuild_success:
    vars:
      #required files to include in tar
      TAR_FILES: "license.txt readme.txt"
    
    cmds:
      #make bin dir
    - cmd: powershell -Command "New-Item -Type Directory -Force -Path './bin'"
      ignore_error: true

    #get licenses for debug
    - task: licenses
      vars: 
        TARGET: './build/Debug'

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

    #static debug lib
    - cd build/Debug && tar -czf '../../bin/win-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/win-x64-debug-{{.PROJECT_NAME}}.tgz' {{.PROJECT_NAME}}.dll {{.TAR_FILES}} {{.PROJECT_NAME}}.pdb
    
    #release static lib
    - cd build/Release && tar -czf '../../bin/win-x64-release-{{.PROJECT_NAME}}-static.tgz' {{.PROJECT_NAME}}_static.lib {{.TAR_FILES}}
    #release dll
    - cd build/Release && tar -czf '../../bin/win-x64-release-{{.PROJECT_NAME}}.tgz' {{.PROJECT_NAME}}.dll {{.TAR_FILES}}

    #source code
    - task: pack_source

  licenses:
    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'"
  
  pack_source:
    dir: '{{.USER_WORKING_DIR}}'
    cmds:
     #just pack up current directory, excluding build, bin, and git directories
     - powershell -Command "tar --exclude build/* --exclude bin/* --exclude .git/* -czvf bin/src.tar *"


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