Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.travis.yml - github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b3590e199c8be121cb48becbeda00530206166d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
dist: trusty
language: cpp
compiler:
 - g++-7
 - clang-4.0
sudo: false
os:
 - linux
branches:
  only:
    - master
notifications:
  email:
    recipients:
      - nialldouglas14@gmail.com

addons:
  apt:
    sources:
    - ubuntu-toolchain-r-test
    - george-edison55-precise-backports
    - llvm-toolchain-trusty-4.0
    packages:
    - g++-7
    - clang-4.0
    - python3
    - cmake
    - cmake-data
    - doxygen

env:
 - __="cmake tests" NAME=TravisLinuxWorker
 - __="Documentation" NAME=TravisDocumentation
 
matrix:
  exclude:
#  - os: osx
#    compiler: g++-7
  - os: linux
    compiler: clang-4.0
    env: __="Documentation" NAME=TravisDocumentation
#  - os: osx
#    env: __="Documentation" NAME=TravisDocumentation
#  - os: osx
#    env: __="cmake tests" NAME=TravisLinuxWorker

#cache:
#  apt: true
#  directories:
#    - llvm-3.8.0
    
before_install:
# -
#    LLVM_VERSION=3.8.0;
#    if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
#      if [ -z "$(ls -A llvm-$LLVM_VERSION)" ]; then
#        wget -O llvm-$LLVM_VERSION.tar.xz http://llvm.org/releases/$LLVM_VERSION/clang+llvm-$LLVM_VERSION-x86_64-linux-gnu-ubuntu-14.04.tar.xz;
#        mkdir llvm-$LLVM_VERSION;
#        xzcat llvm-$LLVM_VERSION.tar.xz | tar -xvf - --strip 1 -C llvm-$LLVM_VERSION;
#        cd llvm-$LLVM_VERSION/bin;
#        ln -s clang-3.8 clang++-3.8;
#        cd ../..;
#      fi;
#      llvm-$LLVM_VERSION/bin/llvm-config --version;
#      export LLVM_CONFIG="llvm-$LLVM_VERSION/bin/llvm-config";
#      export PATH="$PWD/llvm-$LLVM_VERSION/bin:$PATH";
#    fi
 - git checkout master
 - git submodule update --init --recursive

script:
 -
   if [ "$__" = "cmake tests" ]; then
     if [ "$CXX" = "g++" ]; then export CXX=g++-7; export NAME=TravisLinuxWorkerGCC; fi;
     if [ "$CXX" = "clang++" ]; then export CXX=clang++-4.0; export NAME=TravisLinuxWorkerClang; fi;
     ctest -S .ci.cmake -V --timeout 300;
   fi
 -
   if [ "$__" = "Documentation" ]; then
     git config --global push.default simple;
     git config --global user.name "Jenkins nedprod CI";
     git config --global user.email "foo@nowhere";
     cd doc/html;
     git checkout gh-pages;
     cd ../..;
     CXX=g++-7 ctest -S .docs.cmake -V;
     cd doc/html;
     git add . || true;
     git commit -a -m "Travis CI updates documentation" || true;
     git push -f https://jenkins-nedprod:$JENKINS_NEDPROD_PASSWORD@github.com/ned14/boost.afio gh-pages;
     cd ../..;
   fi
 
after_success:
# - bash -x ./update_coveralls.sh `pwd`

after_failure: