Skip to content

Commit

Permalink
Fixed the CMake install action to actually check tatami_stats.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Mar 28, 2024
1 parent 1cd4a0e commit e36a747
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check-install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: lukka/get-cmake@latest

- name: Configure the build
run: cmake -S . -B build -DTATAMI_TESTS=OFF
run: cmake -S . -B build -DTATAMI_STATS_TESTS=OFF

- name: Install the library
run: sudo cmake --install build
Expand All @@ -30,7 +30,7 @@ jobs:
cmake_minimum_required(VERSION 3.24)
project(test_install)
add_executable(whee source.cpp)
find_package(tatami_tatami)
target_link_libraries(whee tatami::tatami)
find_package(tatami_tatami_stats)
target_link_libraries(whee tatami::tatami_stats)
EOF
cd _downstream && cmake -S . -B build

0 comments on commit e36a747

Please sign in to comment.