Fix AppVeyor:

* Detect continuous integration environment via `CI` variable
* Use double quotes for build cache path
This commit is contained in:
Nicholas Dudfield
2015-03-04 10:13:43 +07:00
committed by Tom Ritchford
parent fc8bf39043
commit 2e59378ab7
4 changed files with 7 additions and 7 deletions

View File

@@ -9,8 +9,8 @@ var config = testutils.init_config();
/* --------------------------------- CONSTS --------------------------------- */
// some parts of the test take a LONG time
var SKIP_TICKET_EXPIRY_PHASE = process.env.TRAVIS == null &&
process.env.RUN_TICKET_EXPIRY == null;
var SKIP_TICKET_EXPIRY_PHASE = !process.env.CI &&
!process.env.RUN_TICKET_EXPIRY;
var ROOT_ACCOUNT = UInt160.json_rewrite('root');
var ALICE_ACCOUNT = UInt160.json_rewrite('alice');