Skip to content

Commit d167795

Browse files
committed
Fix extraction directory
1 parent a5e55c9 commit d167795

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ jobs:
3636
sudo apt-get install libhdf5-dev g++-12
3737
cmake -B build
3838
- name: Build
39-
run: VERBOSE=true make -C build -j `nproc`
39+
run: make -C build -j `nproc`
4040
- name: Test
4141
run: ./build/test/gtest/binsparse-tests

test/gtest/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ function(download_data url file_name)
1010
DATASET_DIR
1111
${DATASET_ARCHIVE})
1212

13+
cmake_path(REMOVE_FILENAME DATASET_DIR)
14+
1315
file(ARCHIVE_EXTRACT INPUT ${DATASET_ARCHIVE} DESTINATION ${DATASET_DIR})
1416

1517
message(STATUS "Downloading file ${DATASET_ARCHIVE} to ${DATASET_DIR}")

0 commit comments

Comments
 (0)