-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes to build on FreeBSD in CI: - Header `alloca.h` is not available on FreeBSD. - Only add `libevent` includes if found. - Don't build tests in CI job on FreeBSD when using CMake. - Skip test/examples using `glib` if `pkg-config` is not installed. - Remove unused test label UT/CT. - Run CI workflow "C/C++ CI" - Get redis_version if valkey_version missing in INFO. Fixes issues in CI job "DB compatibility testing"
- Loading branch information
Showing
7 changed files
with
39 additions
and
39 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 |
---|---|---|
|
@@ -137,12 +137,12 @@ jobs: | |
- uses: actions/checkout@v3 | ||
|
||
- name: Build in FreeBSD | ||
uses: vmactions/[email protected].5 | ||
uses: vmactions/freebsd-vm@f8be330398166d1eb0601f01353839d4052367b2 # v1.0.7 | ||
with: | ||
prepare: pkg install -y gmake cmake | ||
run: | | ||
mkdir build && cd build && cmake .. && make && cd .. | ||
gmake | ||
mkdir build && cd build && cmake -DDISABLE_TESTS=ON .. && gmake | ||
macos: | ||
name: macOS | ||
|
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
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
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
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
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
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