File tree Expand file tree Collapse file tree 4 files changed +10
-17
lines changed
Expand file tree Collapse file tree 4 files changed +10
-17
lines changed Original file line number Diff line number Diff 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/
Original file line number Diff line number Diff 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
1514RUN yum clean all
@@ -22,7 +21,7 @@ ENV QHOME /q
2221ENV PATH /q/l64:$PATH
2322ENV 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
2625ENV BUILD_HOME /source/paho.mqtt.c
2726
2827COPY mqtt_build.sh /source
Original file line number Diff line number Diff line change 22
33cd /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
88cd paho.mqtt.c
99
Original file line number Diff line number Diff line change 33mkdir cbuild
44
55if [ " $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
98elif [ " $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
1311elif [ " $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
1614else
1715 echo " $TRAVIS_OS_NAME is currently not supported"
1816fi
You can’t perform that action at this time.
0 commit comments