diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 11:19:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:53:24 +0000 |
commit | b5f8ee61a7f7e9bd291dd26b0585d03eb686c941 (patch) | |
tree | d4d31289c39fc00da064a825df13a0b98ce95b10 /ml/dlib/.travis.yml | |
parent | Adding upstream version 1.44.3. (diff) | |
download | netdata-b5f8ee61a7f7e9bd291dd26b0585d03eb686c941.tar.xz netdata-b5f8ee61a7f7e9bd291dd26b0585d03eb686c941.zip |
Adding upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ml/dlib/.travis.yml')
-rw-r--r-- | ml/dlib/.travis.yml | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/ml/dlib/.travis.yml b/ml/dlib/.travis.yml deleted file mode 100644 index 4604fbaac..000000000 --- a/ml/dlib/.travis.yml +++ /dev/null @@ -1,107 +0,0 @@ -sudo: required - -matrix: - include: - ################### - - language: cpp - compiler: clang - os: linux - env: - - VARIANT=test - script: - - dlib/travis/build-and-test.sh - - ################### - - language: cpp - compiler: clang - os: linux - env: - - VARIANT=examples - script: - - dlib/travis/build-and-test.sh - - ################### - - language: cpp - compiler: gcc - os: linux - env: - - VARIANT=test - script: - - dlib/travis/build-and-test.sh - - ################### - - language: cpp - compiler: gcc - os: linux - env: - - VARIANT=tools - script: - - dlib/travis/build-and-test.sh - - ################### - - language: cpp - compiler: gcc - os: linux - env: - - VARIANT=dlib_all_source_cpp - script: - - dlib/travis/build-and-test.sh - - ########### test with C++17 ######## - - language: cpp - compiler: gcc - os: linux - env: - - VARIANT=test - - CXXFLAGS=-std=c++17 - # Need to set MATRIX_EVAL to set CC and CXX env vars. You would - # think you could just set them in the env area like any other, but - # travis is wonky about CC and CXX vars so you have to do it this way. - - MATRIX_EVAL="CC=gcc-7 && CXX=g++-7" - addons: - apt: - sources: - - ubuntu-toolchain-r-test - packages: - - g++-7 - script: - - dlib/travis/build-and-test.sh - - ################### - - language: cpp - compiler: gcc - os: linux - env: - - VARIANT=examples - script: - - dlib/travis/build-and-test.sh - - ################### - - language: python - python: 2.7 - env: - - VARIANT=python-api - script: - - dlib/travis/build-and-test.sh - - ################### - - language: python - python: 3.5 - env: - - VARIANT=python-api - script: - - dlib/travis/build-and-test.sh - - ################### - # # Disabled because travis's OS X machines take hours (or days) to begin - # running. Or maybe they are just broken entirely. Who knows. - #- language: cpp - # os: osx - # osx_image: xcode9.2 - # env: - # - VARIANT=test - # script: - # - dlib/travis/build-and-test.sh - - - |