Update OpenSSL to 3.4.0 #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Windows Build | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- v1.1.x | |
- v3.4.x | |
pull_request: | |
branches: | |
- master | |
- v1.1.x | |
- v3.4.x | |
jobs: | |
build: | |
name: Build OpenSSL Windows | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install build dependencies | |
run: | | |
choco install nasm strawberryperl -y | |
echo "C:\Program Files\NASM" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
echo "C:\Strawberry\perl\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append | |
# https://learn.microsoft.com/en-us/visualstudio/releases/2019/history | |
- name: Check available VS versions | |
shell: cmd | |
run: | | |
where vswhere.exe | |
vswhere.exe -all -prerelease -format json | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
with: | |
msbuild-architecture: x64 | |
# https://github.com/microsoft/setup-msbuild?tab=readme-ov-file#specifying-specific-versions-of-visual-studio-optional | |
# vs-version: "[16.11,16.12)" | |
- name: Build All Configurations | |
shell: cmd | |
run: | | |
CALL build.cmd | |
- name: Upload Build Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: openssl-windows-builds | |
path: out/*.zip | |
if-no-files-found: error | |
retention-days: 7 |