Skip to content

Create install target #188

Create install target

Create install target #188

Workflow file for this run

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 }}