fix CI
This commit is contained in:
parent
d06ddf023a
commit
644b555da9
|
@ -14,7 +14,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
apt-get update -y
|
apt-get update -y
|
||||||
apt-get upgrade -y
|
apt-get upgrade -y
|
||||||
apt-get install -y g++ cmake make
|
apt-get install -y g++ cmake make lua5.3-dev
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
|
|
|
@ -40,7 +40,14 @@ add_test(NAME TestCl COMMAND test_cl)
|
||||||
include(FetchContent)
|
include(FetchContent)
|
||||||
FetchContent_Declare(
|
FetchContent_Declare(
|
||||||
tmuxub
|
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
|
GIT_TAG origin/main
|
||||||
)
|
)
|
||||||
FetchContent_MakeAvailable(tmuxub)
|
FetchContent_MakeAvailable(tmuxub)
|
||||||
|
|
||||||
|
FetchContent_Declare(
|
||||||
|
Catch2
|
||||||
|
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
|
||||||
|
GIT_TAG origin/devel
|
||||||
|
)
|
||||||
|
FetchContent_MakeAvailable(Catch2)
|
||||||
|
|
Loading…
Reference in a new issue