chore(build): install before test

This commit is contained in:
fallenoak 2025-11-21 15:53:51 -06:00
parent 97be093023
commit cdeb4464e2
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D
2 changed files with 22 additions and 8 deletions

View File

@ -28,7 +28,7 @@ jobs:
- name: Windows Latest (MSVC)
os: windows-latest
build_type: Release
test_path: Release/WhoaTest
test_path: WhoaTest
cc: cl
cxx: cl
@ -41,10 +41,17 @@ jobs:
run: mkdir build
- name: Configure
run: cd build && cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
run: cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
working-directory: build
- name: Build
run: cmake --build build --config ${{ matrix.config.build_type }}
run: cmake --build . --config ${{ matrix.config.build_type }}
working-directory: build
- name: Install
run: cmake --install . --config ${{ matrix.config.build_type }}
working-directory: build
- name: Test
run: ./build/bin/${{ matrix.config.test_path }}
run: ./dist/bin/${{ matrix.config.test_path }}
working-directory: build

View File

@ -31,7 +31,7 @@ jobs:
- name: Windows Latest (MSVC)
os: windows-latest
build_type: Release
test_path: Release/WhoaTest
test_path: WhoaTest
cc: cl
cxx: cl
@ -44,10 +44,17 @@ jobs:
run: mkdir build
- name: Configure
run: cd build && cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
run: cmake .. -DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }}
working-directory: build
- name: Build
run: cmake --build build --config ${{ matrix.config.build_type }}
run: cmake --build . --config ${{ matrix.config.build_type }}
working-directory: build
- name: Install
run: cmake --install . --config ${{ matrix.config.build_type }}
working-directory: build
- name: Test
run: ./build/bin/${{ matrix.config.test_path }}
run: ./dist/bin/${{ matrix.config.test_path }}
working-directory: build