CXXCBC-632: Do not assume Analytics will always send meta fields in response #2550
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-2022, windows-2019] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install dependencies | |
run: | | |
choco install --no-progress nasm | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: ${{ github.job }}-${{ matrix.os }} | |
variant: sccache | |
- name: Build tests | |
timeout-minutes: 80 | |
env: | |
CB_CACHE_OPTION: sccache | |
# CB_CMAKE_BUILD_TYPE: Release | |
CB_CMAKE_BUILD_TYPE: RelWithDebInfo | |
CB_NUMBER_OF_JOBS: 2 | |
run: ruby ./bin/build-tests.rb |