forked from Tossy0423/darknet
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] extend timeout for vcpkg, add all vcpkg configs to allowed failures
- Loading branch information
Showing
1 changed file
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -893,6 +893,8 @@ matrix: | |
#do not consider known failing builds for the whole build status | ||
allow_failures: | ||
- name: macOS - vcpkg | ||
- name: ubuntu 14.04 - [email protected] - vcpkg | ||
- name: ubuntu 14.04 - [email protected] - CUDA 10 - vcpkg | ||
|
||
before_install: | ||
- travis_retry eval "${MATRIX_EVAL}" | ||
|
@@ -908,9 +910,8 @@ install: | |
- git pull | ||
- if [ "${USE_VCPKG}" = true ] ; then ./bootstrap-vcpkg.sh ; fi | ||
- if [ "${USE_VCPKG}" = true ] ; then travis_wait ./vcpkg install stb pthreads ; fi | ||
#- if [ "${USE_VCPKG}" = true ] && [[ ! -z "${CUDACXX}" ]] ; then travis_wait ./vcpkg install opencv[ffmpeg,cuda] ; fi | ||
#- if [ "${USE_VCPKG}" = true ] && [[ -z "${CUDACXX}" ]] ; then travis_wait ./vcpkg install opencv[ffmpeg] ; fi | ||
- if [ "${USE_VCPKG}" = true ] ; then travis_wait ./vcpkg install opencv[ffmpeg] ; fi | ||
- if [ "${USE_VCPKG}" = true ] && [[ ! -z "${CUDACXX}" ]] ; then travis_wait 45 ./vcpkg install opencv[ffmpeg,cuda] ; fi | ||
- if [ "${USE_VCPKG}" = true ] && [[ -z "${CUDACXX}" ]] ; then travis_wait 45 ./vcpkg install opencv[ffmpeg] ; fi | ||
- popd | ||
|
||
before_script: | ||
|