Skip to content

Commit 531e4bd

Browse files
committed
Make testing optional
1 parent 47a9a6b commit 531e4bd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build-all.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: matrix.os == 'ubuntu-latest'
3636
run: |
3737
sudo apt-get update
38-
sudo apt-get install -y cmake ninja-build
38+
sudo apt-get install -y cmake ninja-build libtool autoconf automake lcov
3939
4040
- name: Install dependencies on Mac
4141
if: matrix.os == 'macos-latest'

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ project(zq VERSION 0.1.0
77
if(PROJECT_IS_TOP_LEVEL)
88
# make git ignore the build directory
99
file(WRITE ${CMAKE_BINARY_DIR}/.gitignore "*")
10-
set(ZQ_TEST_PROJECT ON) # give option to test even if we are not the top project
10+
option(ZQ_TEST_PROJECT "Enable testing" ON) # give option to test even if we are not the top project
1111
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
1212
add_custom_target(
1313
clangformat

vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"protobuf",
77
{
88
"name": "zeromq",
9-
"features": [ "sodium", "websockets" ]
9+
"features": [ "websockets" ]
1010
}
1111
]
1212
}

0 commit comments

Comments
 (0)