mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
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:
parent
2f29b075b2
commit
938043892a
2 changed files with 9 additions and 2 deletions
|
@ -4,7 +4,7 @@ branches:
|
||||||
except:
|
except:
|
||||||
- /^travis.*$/
|
- /^travis.*$/
|
||||||
|
|
||||||
clone_depth: 1
|
clone_depth: 10
|
||||||
|
|
||||||
os: Visual Studio 2015
|
os: Visual Studio 2015
|
||||||
|
|
||||||
|
@ -52,3 +52,9 @@ build:
|
||||||
project: build\GZDoom.sln
|
project: build\GZDoom.sln
|
||||||
parallel: true
|
parallel: true
|
||||||
verbosity: minimal
|
verbosity: minimal
|
||||||
|
|
||||||
|
notifications:
|
||||||
|
- provider: Email
|
||||||
|
on_build_success: false
|
||||||
|
on_build_failure: false
|
||||||
|
on_build_status_changed: false
|
||||||
|
|
|
@ -7,7 +7,7 @@ branches:
|
||||||
- /^appveyor.*$/
|
- /^appveyor.*$/
|
||||||
|
|
||||||
git:
|
git:
|
||||||
depth: 3
|
depth: 10
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
@ -85,6 +85,7 @@ before_install:
|
||||||
- if [ -n "$CLANG_VERSION" ]; then export CC="clang-${CLANG_VERSION}" CXX="clang++-${CLANG_VERSION}"; fi
|
- if [ -n "$CLANG_VERSION" ]; then export CC="clang-${CLANG_VERSION}" CXX="clang++-${CLANG_VERSION}"; fi
|
||||||
- $CC --version
|
- $CC --version
|
||||||
- $CXX --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
|
- 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}"
|
- curl -LO "https://github.com/coelckers/gzdoom/releases/download/ci_deps/${FMOD_FILENAME}"
|
||||||
- tar -xf "${FMOD_FILENAME}"
|
- tar -xf "${FMOD_FILENAME}"
|
||||||
|
|
Loading…
Reference in a new issue