Merge pull request #40 from Dasaav-dsv/post-dlc-param #65
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: CMake Multi-target Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
build_type: [Release, Debug] | |
cl_toolset: [ {name: Visual Studio, id: v143}, {name: clang-cl, id: ClangCL} ] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Configure CMake | |
run: > | |
cmake | |
-G "Visual Studio 17 2022" | |
-A x64 | |
-T ${{ matrix.cl_toolset.id }} | |
-S ${{ github.workspace }} | |
-B ${{ github.workspace }}/build | |
- name: Build | |
run: cmake --build ${{ github.workspace }}/build --config ${{ matrix.build_type }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libER.dll ${{ matrix.cl_toolset.name }} ${{ matrix.build_type }} | |
path: | | |
${{ github.workspace }}/build/${{ matrix.build_type }}/libER${{ matrix.build_type == 'Debug' && 'd' || '' }}.dll | |
${{ github.workspace }}/build/${{ matrix.build_type }}/libER${{ matrix.build_type == 'Debug' && 'd' || '' }}.exp | |
${{ github.workspace }}/build/${{ matrix.build_type }}/libER${{ matrix.build_type == 'Debug' && 'd' || '' }}.lib | |
${{ github.workspace }}/build/${{ matrix.build_type }}/libER${{ matrix.build_type == 'Debug' && 'd' || '' }}.pdb | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: libER_static.lib ${{ matrix.cl_toolset.name }} ${{ matrix.build_type }} | |
path: ${{ github.workspace }}/build/${{ matrix.build_type }}/libER_static${{ matrix.build_type == 'Debug' && 'd' || '' }}.lib |