mdbx: avoid extra-growth of DB instead of GC-reclaiming in a rare spe… #67
This file contains hidden or 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: ci-windows | |
| env: | |
| CI: GITHUB | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| on: [push] | |
| jobs: | |
| ci-job: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolset: [v143] | |
| dll: [ON, OFF] | |
| without_crt: [ON, OFF] | |
| target: [x64, Win32] | |
| build-type: [Debug, Release] | |
| os: [windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: ci-step | |
| env: | |
| CI_MAKE_TARGET: "" | |
| shell: bash | |
| run: | | |
| . ci.sh "-A|${{ matrix.target }}|-T|${{ matrix.toolset }}|-DCMAKE_BUILD_TYPE=${{ matrix.build-type }}|-DMDBX_BUILD_SHARED_LIBRARY:BOOL=${{ matrix.dll }}|-DMDBX_WITHOUT_MSVC_CRT:BOOL=${{ matrix.without_crt }}" \ | |
| "--config|${{ matrix.build-type }}" "--build-config|${{ matrix.build-type }}" |