build: update curl to version 8.3.0 #7
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: Build Windows | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
concurrency: | |
group: environment-win-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build - ${{ matrix.config.os }} | |
runs-on: ${{ matrix.config.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- os: windows-latest | |
name: "Windows x64 MSVC" | |
artifact: "Windows-MSVC.tar.xz" | |
build_type: "RelWithDebInfo" | |
environment_script: "C:/Program Files/Microsoft Visual Studio/2022/Enterprise/VC/Auxiliary/Build/vcvars64.bat" | |
cc: "cl" | |
cxx: "cl" | |
archiver: "7z a" | |
generators: "Visual Studio 16 2022" | |
build_dir: 'build' | |
steps: | |
- name: Build Module | |
uses: Silverlan/pragma/github_actions/build_generic_module@master | |
with: | |
module: 'pr_curl' |