diff options
author | vnugent <public@vaughnnugent.com> | 2024-08-06 19:42:25 -0400 |
---|---|---|
committer | vnugent <public@vaughnnugent.com> | 2024-08-06 19:42:25 -0400 |
commit | 7989a2660997b909e0b99fc1dfb3bcfbb0528df3 (patch) | |
tree | c5091cd853e3daf3fdd4499cde69045dcd847984 /Taskfile.yaml | |
parent | e949ae5aa1fd25d4d11fe31e30b7d82ae7778dc2 (diff) |
update openssl to 3.3.1
Diffstat (limited to 'Taskfile.yaml')
-rw-r--r-- | Taskfile.yaml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Taskfile.yaml b/Taskfile.yaml index 9c123ec..053cef2 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -176,6 +176,7 @@ tasks: - task: dev-update-monocypher - task: dev-update-mbedtls-headers - task: dev-update-openssl-headers + - task: dev-set-secp256-headers dev-update-monocypher: vars: @@ -204,13 +205,13 @@ tasks: - git clone --branch {{ .MBEDTLS_GIT_BRANCH }} {{ .MBEDTLS_GIT_URL }} '{{ .TMP_DIR }}' - - for: [ 'include/mbedtls', 'include/psa' ] + - for: [ 'include/mbedtls' ] cmd: powershell cp -Recurse -Force '{{ .TMP_DIR }}/{{ .ITEM }}' '{{.MBEDTLS_DIR}}/include' dev-update-openssl-headers: vars: - OPENSSL_GIT_URL: 'git://git.openssl.org/openssl.git' - OPENSSL_GIT_BRANCH: 'master' + OPENSSL_GIT_URL: 'https://github.com/openssl/openssl' + OPENSSL_GIT_BRANCH: 'openssl-3.3.1' OPENSSL_DIR: 'vendor/openssl' TMP_DIR: '.update/openssl' cmds: |