Ver código fonte

activate travis functionality

Julius Pfrommer 10 anos atrás
pai
commit
cdb52f940f
1 arquivos alterados com 31 adições e 29 exclusões
  1. 31 29
      .travis.yml

+ 31 - 29
.travis.yml

@@ -8,14 +8,14 @@ env:
    # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
    - secure: "ehswgymGXPM3UINhOOnfSByMnrRNTixeT2vEV+z3kXy3WHew/O1yt9GxaYGrUhJPg4+5chAQgjYmezO1x3/CUKFgeHQUmVTFWEzfy1kL1JVjO+ufYyJDnbY+x3OmyNmMYcef2J5MAuUS2C1KFvIxtLsljVK+gpe4LcylkCIF/3Y="
 addons:
-#  coverity_scan:
-#    project:
-#      name: acplt/open62541
-#      description: Open-source OPC UA
-#    notification_email: null@plt.rwth-aachen.de
-#    build_command_prepend: ./autogen.sh && ./configure
-#    build_command: make
-#    branch_pattern: coverity_scan
+  coverity_scan:
+    project:
+      name: acplt/open62541
+      description: Open-source OPC UA
+    notification_email: null@plt.rwth-aachen.de
+    build_command_prepend: mkdir build && cd build && cmake ..
+    build_command: make
+    branch_pattern: coverity_scan
 before_install:
    - sudo apt-get update -qq
    - sudo apt-get install -qq build-essential cmake python-lxml graphviz doxygen check
@@ -23,26 +23,28 @@ before_install:
 script: 
    - mkdir build
    - cd build
-   - cmake .. 
+   - cmake -DGENERATE_DOCUMENTATION=ON .. 
+   - echo "Production build"
    - make
-#   - echo "Production build + checks"
-#   - make && make check && make clean
-#   - echo "Extended debug build + checks + coverage + doxygen"
-#   - ./configure --enable-debug --enable-coverage --enable-doxygen
-#   - make all && make check
+   - echo "Generate documentation"
+   - make doc
+   - echo "Debug build and unit tests"
+   - cmake -DCMAKE_BUILD_TYPE=Debug -DUNIT_TESTS=ON -DUSE_GCOV=ON .. 
+   - make && make test
 after_success:
-#   - git clone --depth=50 -b gh-pages https://$GITAUTH@github.com/acplt/open62541
-#   - rm -rf open62541/doxygen
-#   - cp -r doc/html open62541/doxygen
-#   - cd open62541/doxygen
-#   - git config --global user.email "open62541-travis-ci@users.noreply.github.com"
-#   - git config --global user.name "Open62541 travis-ci"
-#   - git config --global push.default simple
-#   - git add *
-#   - git commit -am "doxygen updated by travis-ci"
-#   - git push https://$GITAUTH@github.com/acplt/open62541
-#   - cd ..
-#   - cd ..
-#   - rm -rf open62541
-#   - ./tools/.coverity.sh
-#   - coveralls -b src --exclude doc --exclude examples --exclude tests --exclude wrappers --exclude src/.libs --exclude src/util/.libs -E '.*\.h' 
+   - git clone --depth=50 -b gh-pages https://$GITAUTH@github.com/acplt/open62541
+   - rm -rf open62541/doxygen
+   - cp -r doc open62541/doxygen
+   - cd open62541/doxygen
+   - git config --global user.email "open62541-travis-ci@users.noreply.github.com"
+   - git config --global user.name "Open62541 travis-ci"
+   - git config --global push.default simple
+   - git add *
+   - git commit -am "doxygen updated by travis-ci"
+   - git push https://$GITAUTH@github.com/acplt/open62541
+   - cd ..
+   - cd ..
+   - rm -rf open62541
+   - cd ..
+   - ./tools/.coverity.sh
+   - coveralls -b src --exclude doc --exclude examples --exclude tests --exclude wrappers -E '.*\.h'