-
Notifications
You must be signed in to change notification settings - Fork 134
32 lines (28 loc) · 868 Bytes
/
ci-windows.yml
File metadata and controls
32 lines (28 loc) · 868 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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 }}"