summaryrefslogtreecommitdiffstats
path: root/.travis
diff options
context:
space:
mode:
authorAustin S. Hemmelgarn <austin@netdata.cloud>2021-01-15 12:38:05 -0500
committerGitHub <noreply@github.com>2021-01-15 12:38:05 -0500
commit0d54bda605232d8d4b45e33274e579f6d98118b9 (patch)
treebd478e5b3de23443ad89341eb5155261550c3ddd /.travis
parent7ffe03690b02ec9961837f09f3c225172fb31fad (diff)
Switched to using system libwebsockets for RPM builds. (#10507)
* Switched to using system libwebsockets for RPM builds. Also cleans up the configure statement in the RPM spec file. * Add version requirement for LWS dep and only use native on platforms that meet it.
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/package_management/common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis/package_management/common.py b/.travis/package_management/common.py
index 61cf358737..4cc04b93f3 100755
--- a/.travis/package_management/common.py
+++ b/.travis/package_management/common.py
@@ -111,6 +111,7 @@ def install_common_dependendencies(container):
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "protobuf-devel"])
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "protobuf-c-devel"])
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "protobuf-compiler"])
+ run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "libwebsockets-devel"])
elif str(os.environ["REPO_TOOL"]).count("apt-get") == 1:
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "g++"])
@@ -132,6 +133,7 @@ def install_common_dependendencies(container):
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "protobuf-devel"])
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "protobuf-c-devel"])
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "protobuf-compiler"])
+ run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "libwebsockets-devel"])
if os.environ["BUILD_STRING"].count("el/6") <= 0:
run_command(container, [os.environ["REPO_TOOL"], "install", "-y", "autogen"])