CXXCBC-421: Return feature_not_available
when query preserve expiry is not supported
#1726
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@v2 | |
with: | |
submodules: recursive | |
- name: ccache | |
uses: hendrikmuhs/ccache-action@v1.2 | |
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_NUMBER_OF_JOBS: 2 | |
run: ruby ./bin/build-tests.rb |