remove constexpr from DEFINE_xxx_CONTEXT() #590
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: [ master ] | |
pull_request: | |
# branches: [ master ] | |
jobs: | |
build_libebml: | |
name: libebml ${{ matrix.arch.name }} ${{ matrix.config }} | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
config: [Debug, Release] | |
arch: [ | |
{ "name": "x64", "option": "x64", "env": "AMD64"}, | |
{ "name": "x86", "option": "win32", "env": "X86"}, | |
{ "name": "arm64", "option": "arm64", "env": "ARM64"}, | |
] | |
env: | |
CMAKE_OPTIONS: -DDEV_MODE=ON -DCMAKE_CXX_FLAGS_INIT="-DWINVER=0x0501" -DBUILD_TESTING=ON | |
steps: | |
- uses: lukka/get-cmake@latest | |
- name: Get pushed code | |
uses: actions/checkout@v4 | |
- name: Configure library | |
run: cmake -S . -B _build ${{ env.CMAKE_OPTIONS }} -A ${{ matrix.arch.option }} | |
- name: Build | |
run: cmake --build _build --config ${{ matrix.config }} --parallel | |
- name: Test installation | |
run: cmake --install _build --config ${{ matrix.config }} --prefix ${GITHUB_WORKSPACE}/_built | |
- name: Run tests | |
run: | | |
if ($env:PROCESSOR_ARCHITECTURE -match "${{ matrix.arch.env }}") { | |
ctest --test-dir _build | |
} |