From 551397e969977e1e3bc0da20f6717057ff61e2d9 Mon Sep 17 00:00:00 2001 From: rocky Date: Mon, 14 Dec 2015 15:18:56 -0500 Subject: [PATCH] A correct way to set a circleci envvar? --- circle.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index f955c94d..853380b7 100644 --- a/circle.yml +++ b/circle.yml @@ -1,7 +1,9 @@ machine: python: version: 2.7.8 + environment: + COMPILE: --compile test: override: - - COMPILE='--compile' make check + - make check