From 21ae2099f7bd07bcb501bd08b7352999ef55a68d Mon Sep 17 00:00:00 2001 From: David Heejong Park Date: Mon, 19 Feb 2024 12:36:49 +0100 Subject: [PATCH] Github action update --- .github/workflows/build-and-test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 3973792..03c2f45 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -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 . @@ -43,7 +44,7 @@ jobs: if: matrix.build_type == 'Release' with: name: proxyfmu - path: build/bin/proxyfmu* + path: install/bin/* windows: name: Windows @@ -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 }} @@ -81,4 +83,4 @@ jobs: if: matrix.build_type == 'Release' with: name: proxyfmu - path: build/bin/proxyfmu* + path: install/bin/*