fix CI
Some checks failed
Clang-format Check / clang-format-check (push) Successful in 16s
Tests Check / test-check (push) Failing after 13s

This commit is contained in:
Timofey Khoruzhii 2023-05-09 01:49:06 +03:00
parent d06ddf023a
commit 644b555da9
2 changed files with 9 additions and 2 deletions

View file

@ -40,7 +40,14 @@ add_test(NAME TestCl COMMAND test_cl)
include(FetchContent)
FetchContent_Declare(
tmuxub
GIT_REPOSITORY http://185.125.201.211:3000/onyad/tmuxub.git
GIT_REPOSITORY http://git.timk.fun/onyad/tmuxub.git
GIT_TAG origin/main
)
FetchContent_MakeAvailable(tmuxub)
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG origin/devel
)
FetchContent_MakeAvailable(Catch2)