Skip to content

Commit

Permalink
Github action update
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhjp01 committed Feb 19, 2024
1 parent 748059f commit 21ae209
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
-DPROXYFMU_BUILD_EXAMPLES=ON
-DPROXYFMU_BUILD_TESTS=ON
-DCMAKE_INSTALL_PREFIX=install
- name: Build
working-directory: build
run: cmake --build .
Expand All @@ -43,7 +44,7 @@ jobs:
if: matrix.build_type == 'Release'
with:
name: proxyfmu
path: build/bin/proxyfmu*
path: install/bin/*

windows:
name: Windows
Expand Down Expand Up @@ -72,6 +73,7 @@ jobs:
-DCMAKE_POLICY_DEFAULT_CMP0091=NEW
-DPROXYFMU_BUILD_EXAMPLES=ON
-DPROXYFMU_BUILD_TESTS=ON
-DCMAKE_INSTALL_PREFIX=install
- name: Build
working-directory: build
run: cmake --build . --config ${{ matrix.build_type }}
Expand All @@ -81,4 +83,4 @@ jobs:
if: matrix.build_type == 'Release'
with:
name: proxyfmu
path: build/bin/proxyfmu*
path: install/bin/*

0 comments on commit 21ae209

Please sign in to comment.