Skip to content

Log driver object address on entry #8

Log driver object address on entry

Log driver object address on entry #8

on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
include:
- msvc_config: x64-Release
msvc_arch: amd64
build_type: RelWithDebInfo
- msvc_config: x86-Release
msvc_arch: amd64_x86
build_type: RelWithDebInfo
- msvc_config: x64-Debug
msvc_arch: amd64
build_type: Debug
- msvc_config: x86-Debug
msvc_arch: amd64_x86
build_type: Debug
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# Required for version stamping (`git describe`) to work.
fetch-depth: 0
- uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.msvc_arch }}
- run: cmake -S src -B src/out/build/${{ matrix.msvc_config }} -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_INSTALL_PREFIX:PATH=${{ github.workspace }}/src/out/install/${{ matrix.msvc_config }}
- run: cmake --build src/out/build/${{ matrix.msvc_config }}
- run: cmake --install src/out/build/${{ matrix.msvc_config }}
- uses: actions/upload-artifact@v2
with:
name: ASIO401-${{ matrix.msvc_config }}
path: src/out/install/${{ matrix.msvc_config }}/
installer:
runs-on: windows-latest
needs: build
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
# Required for version stamping (`git describe`) to work.
fetch-depth: 0
- uses: actions/download-artifact@v2
with:
name: ASIO401-x64-Release
path: src/out/install/x64-Release
- uses: actions/download-artifact@v2
with:
name: ASIO401-x86-Release
path: src/out/install/x86-Release
- run: cmake -P installer.cmake
working-directory: src
- uses: actions/upload-artifact@v2
with:
name: ASIO401-installer
path: src/out/installer/*