[metric] fix summary serialize to json thread-safe #2137
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 Server 2022 | |
on: | |
workflow_call: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] | |
workflow_dispatch: | |
jobs: | |
windows_msvc: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
mode: [ Release ] #[ Release, Debug ] #Debug not support ccache | |
#https://github.com/ccache/ccache/wiki/MS-Visual-Studio | |
#https://github.com/ccache/ccache/issues/1040 | |
arch: [ amd64, x86 ] #[ amd64,x86 ] | |
ssl: [ OFF ] #[ ON, OFF ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Enable Developer Command Prompt | |
uses: ilammy/[email protected] | |
with: | |
arch: ${{ matrix.arch }} | |
- name: Install ninja-build tool | |
uses: seanmiddleditch/gha-setup-ninja@master | |
with: | |
version: 1.11.1 | |
- name: latest ccache | |
run: choco install ccache | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }}-${{ matrix.mode}}-ssl( ${{ matrix.ssl}} )-arch-${{ matrix.arch}} | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}\build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DYLT_ENABLE_SSL=${{matrix.ssl}} -DUSE_CCACHE=ON | |
- name: Build | |
run: cmake --build ${{github.workspace}}\build | |
- name: Test | |
working-directory: ${{github.workspace}}\build | |
run: ctest -C ${{matrix.mode}} -j 1 -V | |
windows_msvc_2019: | |
runs-on: windows-2019 | |
strategy: | |
matrix: | |
mode: [ Release ] #[ Release, Debug ] #Debug not support ccache | |
#https://github.com/ccache/ccache/wiki/MS-Visual-Studio | |
#https://github.com/ccache/ccache/issues/1040 | |
arch: [ amd64, x86 ] #[ amd64,x86 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Enable Developer Command Prompt | |
uses: ilammy/[email protected] | |
with: | |
arch: ${{ matrix.arch }} | |
- name: Install ninja-build tool | |
uses: seanmiddleditch/gha-setup-ninja@master | |
with: | |
version: 1.11.1 | |
- name: latest ccache | |
run: choco install ccache | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }}-${{ matrix.mode}}-arch-${{ matrix.arch}} | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}\build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DYLT_ENABLE_SSL=${{matrix.ssl}} -DBUILD_STRUCT_PB=OFF -DUSE_CCACHE=ON | |
- name: Build | |
run: cmake --build ${{github.workspace}}\build | |
- name: Test | |
working-directory: ${{github.workspace}}\build | |
run: ctest -C ${{matrix.mode}} -j 1 -V |