mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
Fix AppVeyor:
* Detect continuous integration environment via `CI` variable * Use double quotes for build cache path
This commit is contained in:
committed by
Tom Ritchford
parent
fc8bf39043
commit
2e59378ab7
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user