forked from valkey-io/libvalkey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -157,14 +157,18 @@ jobs: | |
steps: | ||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
- name: Install dependencies | ||
run: brew install ninja valkey | ||
run: brew install ninja [email protected] | ||
- name: Install Valkey for non-cluster tests | ||
run: | | ||
git clone --depth 1 --branch 8.0.0 https://github.com/valkey-io/valkey.git | ||
cd valkey && BUILD_TLS=yes OPENSSL_PREFIX=/opt/homebrew/opt/[email protected] make install | ||
- name: Build using CMake | ||
run: | | ||
mkdir build && cd build | ||
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release -DENABLE_SSL=ON | ||
ninja -v | ||
- name: Build using Makefile | ||
run: USE_SSL=1 make | ||
run: USE_SSL=1 OPENSSL_PREFIX=/opt/homebrew/opt/[email protected] make | ||
- name: Run tests | ||
working-directory: tests | ||
env: | ||
|