Update CI configurations

Increase git clone depth to 10 for both services so quick pushes won't break the build
Disable email notifications for AppVeyor
This commit is contained in:
alexey.lysiuk 2017-03-08 09:52:19 +02:00
parent 2f29b075b2
commit 938043892a
2 changed files with 9 additions and 2 deletions

View File

@ -4,7 +4,7 @@ branches:
except:
- /^travis.*$/
clone_depth: 1
clone_depth: 10
os: Visual Studio 2015
@ -52,3 +52,9 @@ build:
project: build\GZDoom.sln
parallel: true
verbosity: minimal
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false

View File

@ -7,7 +7,7 @@ branches:
- /^appveyor.*$/
git:
depth: 3
depth: 10
matrix:
include:
@ -85,6 +85,7 @@ before_install:
- if [ -n "$CLANG_VERSION" ]; then export CC="clang-${CLANG_VERSION}" CXX="clang++-${CLANG_VERSION}"; fi
- $CC --version
- $CXX --version
# Update dependencies here: https://github.com/coelckers/gzdoom/releases/tag/ci_deps
- export FMOD_FILENAME=fmod-4.44.64-${TRAVIS_OS_NAME}.tar.bz2
- curl -LO "https://github.com/coelckers/gzdoom/releases/download/ci_deps/${FMOD_FILENAME}"
- tar -xf "${FMOD_FILENAME}"