Skip to content

Commit

Permalink
Make testing optional
Browse files Browse the repository at this point in the history
  • Loading branch information
a4z committed Jun 4, 2024
1 parent 47a9a6b commit 531e4bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build
sudo apt-get install -y cmake ninja-build libtool autoconf automake lcov
- name: Install dependencies on Mac
if: matrix.os == 'macos-latest'
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project(zq VERSION 0.1.0
if(PROJECT_IS_TOP_LEVEL)
# make git ignore the build directory
file(WRITE ${CMAKE_BINARY_DIR}/.gitignore "*")
set(ZQ_TEST_PROJECT ON) # give option to test even if we are not the top project
option(ZQ_TEST_PROJECT "Enable testing" ON) # give option to test even if we are not the top project
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
add_custom_target(
clangformat
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"protobuf",
{
"name": "zeromq",
"features": [ "sodium", "websockets" ]
"features": [ "websockets" ]
}
]
}

0 comments on commit 531e4bd

Please sign in to comment.