Fix build type in windows release workflow #185
Workflow file for this run
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 CI | |
on: | |
push: | |
branches: | |
- main | |
- feature/* | |
- features/* | |
- fix/* | |
jobs: | |
windows: | |
runs-on: ${{ matrix.os }} | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
strategy: | |
matrix: | |
os: [windows-latest] | |
buildtype: [Release,Debug] | |
include: | |
- system_build: OFF | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Configure and build | |
run: | | |
cmake -B _build -S . -DBUILD_not_system=ON -DBUILD_system=${{ matrix.system_build }} -DCMAKE_BUILD_TYPE=${{ matrix.buildtype }} -DDEPS_INSTALL_DIR=rte-antares-deps-${{ matrix.buildtype }} | |
- name: Archive upload | |
uses: actions/upload-artifact@v2 | |
with: | |
name: antares-deps-${{ matrix.os }}-${{ matrix.buildtype }} | |
path: | | |
rte-antares-deps-${{ matrix.buildtype }} |