Skip to content

Commit 8d67703

Browse files
authored
paho lib version changed from 1.3.12 to 1.3.13 (#71)
1 parent f53811e commit 8d67703

File tree

4 files changed

+10
-17
lines changed

4 files changed

+10
-17
lines changed

docker_linux/Dockerfile.alpine

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,13 @@ RUN apk add --update && \
3535
apk add gcompat && \
3636
apk add libnsl && \
3737
cd /source && \
38-
39-
# MQTT Libs
4038
/bin/sh /source/mqtt/build_libpaho.sh && \
41-
42-
# Clean up
4339
apk del gcc && \
4440
apk del cmake && \
4541
apk del make && \
4642
apk del wget && \
4743
apk del build-base && \
48-
rm -rf /source/mqtt_build.sh /source/paho.mqtt.c /source/v1.3.12* /source/mqtt/CmakeLists.txt
44+
rm -rf /source/mqtt_build.sh /source/paho.mqtt.c /source/v1.3.13* /source/mqtt/CmakeLists.txt
4945

5046
## Update this section here to add kdb+
5147
#COPY q/k4.lic /q/

docker_linux/Dockerfile.centos7

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ RUN yum -y install gcc && \
99
yum -y install make && \
1010
yum -y install vim && \
1111
yum -y install openssl-devel && \
12-
yum -y install unzip && \
1312
yum -y install wget
1413

1514
RUN yum clean all
@@ -22,7 +21,7 @@ ENV QHOME /q
2221
ENV PATH /q/l64:$PATH
2322
ENV LD_LIBRARY_PATH /usr/local/lib:$LD_LIBRARY_PATH
2423

25-
RUN cd /source && wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.12/Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz.zip && unzip Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz.zip && tar xvf Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz -C ./paho.mqtt.c --strip-components=1
24+
RUN cd /source && wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.13/Eclipse-Paho-MQTT-C-1.3.13-Linux.tar.gz && tar xvf Eclipse-Paho-MQTT-C-1.3.13-Linux.tar.gz -C ./paho.mqtt.c --strip-components=1
2625
ENV BUILD_HOME /source/paho.mqtt.c
2726

2827
COPY mqtt_build.sh /source

docker_linux/build_libpaho.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
cd /source
44

5-
wget https://github.com/eclipse/paho.mqtt.c/archive/refs/tags/v1.3.12.tar.gz
6-
tar xvf v1.3.12.tar.gz -C ./paho.mqtt.c --strip-components=1
5+
wget https://github.com/eclipse/paho.mqtt.c/archive/refs/tags/v1.3.13.tar.gz
6+
tar xvf v1.3.13.tar.gz -C ./paho.mqtt.c --strip-components=1
77

88
cd paho.mqtt.c
99

travis_setup.sh

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,14 @@
33
mkdir cbuild
44

55
if [ "$TRAVIS_OS_NAME" == "osx" ]; then
6-
wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.12/Eclipse-Paho-MQTT-C-1.3.12-Darwin.tar.gz.zip
7-
unzip Eclipse-Paho-MQTT-C-1.3.12-Darwin.tar.gz.zip
8-
tar xvf Eclipse-Paho-MQTT-C-1.3.12-Darwin.tar.gz -C ./cbuild --strip-components=1
6+
wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.13/Eclipse-Paho-MQTT-C-1.3.13-Darwin.tar.gz
7+
tar xvf Eclipse-Paho-MQTT-C-1.3.13-Darwin.tar.gz -C ./cbuild --strip-components=1
98
elif [ "$TRAVIS_OS_NAME" == "linux" ]; then
10-
wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.12/Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz.zip
11-
unzip Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz.zip
12-
tar xvf Eclipse-Paho-MQTT-C-1.3.12-Linux.tar.gz -C ./cbuild --strip-components=1
9+
wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.13/Eclipse-Paho-MQTT-C-1.3.13-Linux.tar.gz
10+
tar xvf Eclipse-Paho-MQTT-C-1.3.13-Linux.tar.gz -C ./cbuild --strip-components=1
1311
elif [ "$TRAVIS_OS_NAME" == "windows" ]; then
14-
wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.12/eclipse-paho-mqtt-c-win64-1.3.12.zip
15-
7z x -ocbuild eclipse-paho-mqtt-c-win64-1.3.12.zip
12+
wget https://github.com/eclipse/paho.mqtt.c/releases/download/v1.3.13/eclipse-paho-mqtt-c-win64-1.3.13.zip
13+
7z x -ocbuild eclipse-paho-mqtt-c-win64-1.3.13.zip
1614
else
1715
echo "$TRAVIS_OS_NAME is currently not supported"
1816
fi

0 commit comments

Comments
 (0)