1
0
Fork 0
mirror of https://github.com/TheLartians/ModernCppStarter.git synced 2025-09-05 16:31:01 +02:00

build all dll and executable at bin directory

This commit is contained in:
ClausKlein 2021-02-17 00:51:29 +01:00
parent 78b430b172
commit 56a3c22ad9
10 changed files with 33 additions and 16 deletions

View file

@ -1,11 +1,14 @@
---
name: Install
on:
push:
branches:
- master
- develop
pull_request:
branches:
- master
- develop
env:
@ -26,12 +29,12 @@ jobs:
- name: build and install library
run: |
cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
sudo cmake --build build --target install
rm -rf build
- name: configure
run: cmake -Stest -Bbuild -DTEST_INSTALLED_VERSION=1
run: cmake -S test -B build -DTEST_INSTALLED_VERSION=1
- name: build
run: cmake --build build --config Debug -j4