Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
},
{
"match-jobs": ["windows-*"],
"winget-install": ["EclipseFoundation.Mosquitto"]
"run": "$ErrorActionPreference='Stop'; Invoke-WebRequest -Uri 'https://mosquitto.org/files/binary/win64/mosquitto-2.0.18-install-windows-x64.exe' -OutFile mosq.exe; Start-Process -FilePath ./mosq.exe -ArgumentList '/S' -Wait; Start-Service mosquitto"
},
{
"match-jobs": ["macos-*"],
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ jobs:
- os: ubuntu-latest
generator: Ninja
build_type: Debug
- os: windows-latest
- os: windows-2022
generator: "Visual Studio 17 2022"
build_type: Debug
- os: ubuntu-latest
generator: Ninja
build_type: Release
- os: windows-latest
- os: windows-2022
generator: "Visual Studio 17 2022"
build_type: Release

Expand Down Expand Up @@ -69,13 +69,13 @@ jobs:
- os: ubuntu-latest
generator: Ninja
build_type: Debug
- os: windows-latest
- os: windows-2022
generator: "Visual Studio 17 2022"
build_type: Debug
- os: ubuntu-latest
generator: Ninja
build_type: Release
- os: windows-latest
- os: windows-2022
generator: "Visual Studio 17 2022"
build_type: Release

Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
cmake --install build/output --config "${{ matrix.build_type }}"

- name: Add DLL path (Windows only)
if: matrix.os == 'windows-latest'
if: matrix.os == 'windows-2022'
run: echo "${{ env.INSTALL_PREFIX }}/lib" >> $env:GITHUB_PATH

- name: Configure project with CMake
Expand Down
Loading