Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Abingcbc committed Nov 26, 2024
1 parent d932019 commit 6fe5c7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ macro(link_spl target_name)

find_library(LIB_FOUND "libloongcollector_spl.a")
if (NOT LIB_FOUND)
message(FATAL_ERROR "Please upgrade your development image to compile SPL feature!")
message(FATAL_ERROR "Please upgrade your development image to compile!")
endif()

target_link_libraries(${target_name} "libloongcollector_spl.a")
Expand Down
8 changes: 6 additions & 2 deletions docker/Dockerfile.e2e-test
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
FROM python:3.8
FROM golang:1.19.10

RUN mkdir -p /tmp/loongcollector

WORKDIR /root
COPY . ./loongcollector

RUN apt-get update
RUN apt-get -y install python3-setuptools
RUN apt-get -y install python3-pip

WORKDIR /root/loongcollector/test
RUN pip3 install -r requirements.txt
RUN pip3 install -r requirements.txt --break-system-packages

CMD ["sh", "-c", "while true; do sleep 3600; done"]

0 comments on commit 6fe5c7a

Please sign in to comment.