Fixed tests failing with python 3.13 (Closes: #3201) #646
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", "fixes" ] | |
tags: [ "v[0-9]+.*" ] | |
pull_request: | |
branches: [ "master", "fixes" ] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
cjson: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: DaveGamble/cJSON | |
ref: v1.7.15 | |
- name: Configure CMake cJSON | |
run: cmake -B ${{github.workspace}}/build64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_CJSON_TEST=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_SHARED_AND_STATIC_LIBS=OFF -DCJSON_BUILD_SHARED_LIBS=OFF -DCJSON_OVERRIDE_BUILD_SHARED_LIBS=OFF -DCMAKE_GENERATOR_PLATFORM=x64 | |
- name: Build cJSON | |
run: cmake --build ${{github.workspace}}/build64 --config ${{env.BUILD_TYPE}} | |
- name: Install cJSON | |
run: cmake --install ${{github.workspace}}/build64 --config ${{env.BUILD_TYPE}} | |
- name: Upload cJSON | |
uses: actions/upload-artifact@v3 | |
with: | |
name: cjson-bin | |
path: C:\Program Files\cJSON | |
mosquitto: | |
runs-on: windows-2022 | |
needs: | |
- cjson | |
env: | |
CJSON_DIR: C:\Program Files\cJSON | |
steps: | |
- uses: actions/checkout@v3 | |
- name: install openssl | |
run: choco install openssl | |
- name: Download cJSON | |
uses: actions/download-artifact@v3 | |
with: | |
name: cjson-bin | |
path: C:\Program Files\cJSON | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build64 -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DWITH_TESTS=OFF -DCMAKE_GENERATOR_PLATFORM=x64 -DCJSON_INCLUDE_DIR="C:/Program Files/cJSON/include" -DCJSON_LIBRARY="C:/Program Files/cJSON/lib/cjson.lib" | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build64 --config ${{env.BUILD_TYPE}} | |
- uses: suisei-cn/[email protected] | |
id: vcredist | |
name: Download VC redistributable | |
with: | |
url: https://aka.ms/vs/17/release/vc_redist.x64.exe | |
target: ${{github.workspace}}/installer/ | |
- name: Installer | |
uses: joncloud/[email protected] | |
with: | |
script-file: ${{github.workspace}}/installer/mosquitto.nsi | |
- name: Upload installer to artifacts | |
uses: actions/upload-artifact/@v2 | |
with: | |
name: installer | |
path: ${{ github.workspace }}/installer/mosquitto*.exe |