You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2019/04/02 16:46:32 UTC

[GitHub] [nifi-minifi-cpp] apiri commented on a change in pull request #530: MINIFICPP-795: Add travis target

apiri commented on a change in pull request #530: MINIFICPP-795: Add travis target
URL: https://github.com/apache/nifi-minifi-cpp/pull/530#discussion_r271398734
 
 

 ##########
 File path: .travis.yml
 ##########
 @@ -81,15 +81,49 @@ matrix:
         - sudo unlink /usr/bin/gcc && sudo ln -s /usr/bin/gcc-4.8 /usr/bin/gcc
         - sudo unlink /usr/bin/g++ && sudo ln -s /usr/bin/g++-4.8 /usr/bin/g++
     - os: linux
+      name: trusty static build with tests
       dist: trusty
       sudo: required
       script:
         - ./bootstrap.sh -e -t && cd build  && cmake -DUSE_SHARED_LIBS= .. && make -j2 VERBOSE=1 && sudo make test ARGS="-j2 --output-on-failure"
     - os: linux
+      name: xenial shared build with tests
       dist: xenial
       sudo: required
       script:
         - ./bootstrap.sh -e -t && cd build  && cmake -DUSE_SHARED_LIBS= .. && make -j2 VERBOSE=1 && sudo make test ARGS="-j2 --output-on-failure"
+    - os: linux
+      name: debian static package build
+      dist: trusty
+      sudo: required
+      services:
+        - docker
+      script:
+        - mkdir build && && cd build && cmake .. && make debian
+    - os: linux
+      name: centos static package biuld
+      dist: trusty
+      sudo: required
+      services:
+        - docker
+      script:
+        - mkdir build && && cd build && cmake .. && make centos
+    - os: linux
+      name: fedora static package build
+      dist: trusty
+      sudo: required
+      services:
+        - docker
+      script:
+        - mkdir build && && cd build && cmake .. && make fedora
 
 Review comment:
   && && -> &&

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services