Skip to content

Commit

Permalink
Fixup: windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
SSoelvsten committed Mar 15, 2023
1 parent 1842918 commit b3d0777
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,14 @@ jobs:
cmake -E make_directory ${{github.workspace}}\build
cd ${{github.workspace}}\build
SET CXXFLAGS="%CXXFLAGS% -D_HAS_AUTO_PTR_ETC=1"
cmake -D CMAKE_BUILD_TYPE=DEBUG -D Boost_INCLUDE_DIR=${{env.BOOST_ROOT}}\include -D Boost_LIBRARY_DIRS=${{env.BOOST_ROOT}}\lib -D ADIAR_STATS=ON ..
cmake -D CMAKE_BUILD_TYPE=DEBUG -A x64 -T host=x64 -D ADIAR_STATS=ON -D Boost_INCLUDE_DIR=${{env.BOOST_ROOT}}\include -D Boost_LIBRARY_DIRS=${{env.BOOST_ROOT}}\lib ..
cmake --build . --target test-adiar
env:
BOOST_ROOT: ${{ steps.install-boost.outputs.BOOST_ROOT }}

# Run unit tests
- name: Run tests
run: |
cd ${{github.workspace}}\build\test\test-adiar/
ls .
./test-adiar --reporter=info --colorizer=light
cd ${{github.workspace}}\build\test\Debug
test-adiar --reporter=info --colorizer=light

0 comments on commit b3d0777

Please sign in to comment.