aboutsummaryrefslogtreecommitdiff
path: root/Taskfile.yaml
blob: 9e48427a420fe1d88bc09cb9c6dd1fcb18e5e137 (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
# 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

#NOTES: Since CI project is pulled from the module root, MODULE_DIR is used instead of PROJECT_DIR

version: '3'

vars:
  INSTALL_DIR: 'deps/'

  #mbed tls variables
  MBEDTLS_PACK_URL: 'https://github.com/Mbed-TLS/mbedtls/releases/download/v3.6.0/mbedtls-3.6.0.tar.bz2'
  MBEDTLS_PACK_SHA: '3ecf94fcfdaacafb757786a01b7538a61750ebd85c4b024f56ff8ba1490fcd38'
  MBED_TLS_VERSION: '3.6.0'
  MBED_TLS_DIR: '{{.INSTALL_DIR}}mbedtls-{{.MBED_TLS_VERSION}}'

  #secp256k1 variables
  SECP256K1_PACK_URL: 'https://github.com/bitcoin-core/secp256k1/archive/refs/tags/v0.4.1.tar.gz'
  SECP256K1_PACK_SHA: '31b1a03c7365dbce7aff4be9526243da966c58a8b88b6255556d51b3016492c5'
  SECP256K1_VERSION: '0.4.1'
  SCP256K1_DIR: '{{.INSTALL_DIR}}secp256k1-{{.SECP256K1_VERSION}}'

tasks:

  default:
    desc: "Build the library for your system"
    deps:
     - install
    cmds:
     - task: build-local
       vars: { CMAKE_TEST_STATUS: 'Off', BUILD_CONFIG: 'Release' }

  build-tests:
    desc: "Build libraries and test executable in debug mode"
    deps:
     - install
    cmds:
     - task: build-local
       vars: { CMAKE_TEST_STATUS: 'On', BUILD_CONFIG: 'Debug' }

  build-local:
    internal: true
    cmds:
     - cmake -S . -B./build/ -DCMAKE_BUILD_TYPE={{.BUILD_CONFIG}} -DBUILD_TESTS={{.CMAKE_TEST_STATUS}} -DLOCAL_MBEDTLS_DIR={{.MBED_TLS_DIR}}/build -DLOCAL_SECP256K1_DIR={{.SCP256K1_DIR}}/build
     - cmake --build build/ --config {{.BUILD_CONFIG}}
     - cmd: echo "Build complete your files can be found in the build/ directory"
       silent: true

  install:
     desc: 'Installs dependencies locally'     
     cmds:
      #make install dir
      - cmd: powershell -Command "mkdir {{.INSTALL_DIR}} -Force"
        platforms: [windows]
      - cmd: mkdir -p {{.INSTALL_DIR}}
        platforms: [linux, darwin]
      
      #nstall deps locally 
      - task: install-mbedtls
      - task: install-secp256k1

  install-mbedtls:
    internal: true
    sources:
     - '{{.MBED_TLS_DIR}}/*.*'
    cmds:
    #downlaod mbedtls
    - cd {{.INSTALL_DIR}} && curl -L -o mbedtls.tar.bz2 {{.MBEDTLS_PACK_URL}}
    
    - cmd: cd {{.INSTALL_DIR}} && echo "{{.MBEDTLS_PACK_SHA}} mbedtls.tar.bz2" | sha256sum -c
      platforms: [linux, darwin]
    - cmd: cd {{.INSTALL_DIR}} && certutil -hashfile mbedtls.tar.bz2
      platforms: [windows]

    #extract mbedtls
    - cd {{.INSTALL_DIR}} && tar -xjf mbedtls.tar.bz2 
    
    #build using cmake
    - cd {{.MBED_TLS_DIR}} && cmake -Bbuild/ -DUSE_SHARED_MBEDTLS_LIBRARY=On -DENABLE_TESTING=Off -DENABLE_PROGRAMS=Off -DCMAKE_BUILD_TYPE=Release
    - cd {{.MBED_TLS_DIR}} && cmake --build build/

  install-secp256k1:
    internal: true
    sources:
     - '{{.SCP256K1_DIR}}/*.*'
    cmds:
    #downlaod mbedtls
    - cd {{.INSTALL_DIR}} && curl -L -o secp56k1.tgz {{.SECP256K1_PACK_URL}}
    
    - cmd: cd {{.INSTALL_DIR}} && echo "{{.SECP256K1_PACK_SHA}} secp56k1.tgz" | sha256sum -c
      platforms: [linux, darwin]
    - cmd: cd {{.INSTALL_DIR}} && certutil -hashfile secp56k1.tgz
      platforms: [windows]

    #extract mbedtls
    - cd {{.INSTALL_DIR}} && tar -xzf secp56k1.tgz
    
    #build using cmake
    - cd {{.SCP256K1_DIR}} && cmake -Bbuild/ -DSECP256K1_ENABLE_MODULE_SCHNORRSIG=ON -DCMAKE_BUILD_TYPE=Release
    - cd {{.SCP256K1_DIR}} && cmake --build build/
    

#CI ONLY!!

  #called by build pipeline to build module
  build:
    desc: "DO NOT RUN! CI Only"
    cmds:
     - echo "building project {{.PROJECT_NAME}}" 
     - cmd: powershell -Command "mkdir bin/ -Force"
       ignore_error: true
  
     #build windows x64
     - task: build_win_x64

     #pack source
     - task: pack_source

  clean:
    desc: "Cleans the artifact directory"
    ignore_error: true
    cmds:
    - for: [ bin/, build/, deps/]
      task: clean-internal
      vars: { FILE: '{{.ITEM}}'}


  clean-internal:
    internal: true
    ignore_error: true
    cmds:
     - cmd: rm -rf '{{.FILE}}'
       platforms: [linux, darwin]
       
     - cmd: powershell rm -Recurse '{{.FILE}}'
       platforms: [windows]

  build_win_x64:
    internal: true
    vars:
      TARGET_DLL: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/msvc-x64-release-{{.PROJECT_NAME}}.tgz'
      DLL_FILES: '{{.PROJECT_NAME}}.dll {{.PROJECT_NAME}}.lib license.txt'
      TARGET_STATIC: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/msvc-x64-release-{{.PROJECT_NAME}}-static.tgz'
      STATIC_FILES: '{{.PROJECT_NAME}}_static.lib license.txt'
      BUILD_DIR: 'out/build/win-x64'
    
    cmds:
      #invoke cmake build 
     - cmake -S . -B {{.BUILD_DIR}} -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release
     - cmake --build {{.BUILD_DIR}} --config Release  
    
    #copy license to build dir
     - powershell -Command "cp license {{.BUILD_DIR}}/Release/license.txt"

    #tar up the binaries
     - cd {{.BUILD_DIR}}/Release &&  tar -czf "{{.TARGET_DLL}}" {{.DLL_FILES}}

    #tar up static libs
     - cd {{.BUILD_DIR}}/Release &&  tar -czf "{{.TARGET_STATIC}}" {{.STATIC_FILES}}


  pack_source:
    internal: true
    desc: "Packs up the project source code and creates a tarball in the builds binary directory"
    vars:
      TARGET_SOURCE: '{{.PROJECT_DIR}}/{{.BINARY_DIR}}/{{.PROJECT_NAME}}-source.tgz'
      SOURCE_FILES: 'CMakeLists.txt src include license tests Taskfile.yaml'

    cmds:
      #tar up the source
     - tar -czf "{{.TARGET_SOURCE}}" {{.SOURCE_FILES}}