Skip to content

Commit baaf816

Browse files
committed
build: bump catch2 to 3.13.0
Signed-off-by: Certseeds <51754303+Certseeds@users.noreply.github.com>
1 parent 68c54aa commit baaf816

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

third_party/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ set("BUILD_${LIB_WAY}_LIBS" YES)
77
include(FetchContent)
88
CMAKE_CMP_0135()
99

10-
set(CATCH2_HASH "c2fef0ffbe8af6b20e86f8d0e79b6aac")
11-
set(CATCH2_LOCAL_TAR ${CMAKE_CURRENT_SOURCE_DIR}/catch2.tar.gz)
10+
set(CATCH2_HASH "7e64ff8a07b324996a26f3f5d7e7dad8")
11+
set(CATCH2_LOCAL_TAR ${CMAKE_CURRENT_SOURCE_DIR}/catch.3.13.0.tar.gz)
1212

1313
message(STATUS "Using local Catch2 tarball: ${CATCH2_LOCAL_TAR}")
1414

third_party/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -euox pipefail
33
main() {
4-
wget -O ./third_party/catch2.tar.gz \
5-
"https://github.com/catchorg/Catch2/archive/refs/tags/v3.10.0.tar.gz"
4+
wget -O ./third_party/catch.3.13.0.tar.gz \
5+
"https://github.com/catchorg/Catch2/archive/refs/tags/v3.13.0.tar.gz"
66
}
77
main

third_party/rename.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euox pipefail
33
main() {
44
tar \
5-
-xzvf third_party/catch2.tar.gz \
5+
-xzvf third_party/catch.3.13.0.tar.gz \
66
-C third_party/
77
# 定位到脚本所在目录(third_party)
88
local -r self_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"

0 commit comments

Comments
 (0)