We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5e55c9 commit d167795Copy full SHA for d167795
.github/workflows/ci.yml
@@ -36,6 +36,6 @@ jobs:
36
sudo apt-get install libhdf5-dev g++-12
37
cmake -B build
38
- name: Build
39
- run: VERBOSE=true make -C build -j `nproc`
+ run: make -C build -j `nproc`
40
- name: Test
41
run: ./build/test/gtest/binsparse-tests
test/gtest/CMakeLists.txt
@@ -10,6 +10,8 @@ function(download_data url file_name)
10
DATASET_DIR
11
${DATASET_ARCHIVE})
12
13
+ cmake_path(REMOVE_FILENAME DATASET_DIR)
14
+
15
file(ARCHIVE_EXTRACT INPUT ${DATASET_ARCHIVE} DESTINATION ${DATASET_DIR})
16
17
message(STATUS "Downloading file ${DATASET_ARCHIVE} to ${DATASET_DIR}")
0 commit comments