Skip to content

Update DelegateMQ library #13

Update DelegateMQ library

Update DelegateMQ library #13

Workflow file for this run

name: Windows
on:
push:
branches:
- main # Trigger on push
pull_request:
branches:
- main # Trigger on pull
jobs:
build:
runs-on: windows-latest # Use Windows environment for the build
steps:
- name: Checkout code
uses: actions/checkout@v5 # Checkout the repository code
- name: Install libcurl via vcpkg
run: |
vcpkg install curl:x64-windows
vcpkg integrate install
- name: Configure CMake
run: cmake -S . -B build -DCMAKE_TOOLCHAIN_FILE="$env:VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake"
- name: Build
run: cmake --build build --config Release
- name: Run Async-HTTPApp
run: .\build\Release\Async-HTTPApp.exe
continue-on-error: true # Network requests to httpbin.org may be flaky in CI