Disable CI release builds for now

This commit is contained in:
Tad Hardesty 2019-11-16 11:36:54 -08:00
parent bf8490af86
commit 958efd7e6f
2 changed files with 4 additions and 11 deletions

View file

@ -4,10 +4,6 @@ version: '{build}'
branches:
only:
- master
environment:
matrix:
- BUILD_POSTFIX: ""
- BUILD_POSTFIX: "--release"
shallow_clone: true
image: Visual Studio 2017
cache:
@ -20,5 +16,5 @@ install:
- rustc -Vv
- cargo -V
build_script:
- cargo build --verbose --all %BUILD_POSTFIX%
- cargo test --verbose --all %BUILD_POSTFIX%
- cargo build --verbose --all
- cargo test --verbose --all

View file

@ -4,13 +4,10 @@ rust:
branches:
only:
- master
env:
- BUILD_POSTFIX=
- BUILD_POSTFIX=--release
cache: cargo
install:
- rustc -Vv
- cargo -V
script:
- cargo build --verbose --all $BUILD_POSTFIX
- cargo test --verbose --all $BUILD_POSTFIX
- cargo build --verbose --all
- cargo test --verbose --all