From 552fea3c2e8b1c18d88e3bcdc5d85bcdb0e4da97 Mon Sep 17 00:00:00 2001
From: Andre Anjos <andre.dos.anjos@gmail.com>
Date: Sat, 9 Mar 2019 04:46:44 +0100
Subject: [PATCH] [scripts][ci] Prepare for a possible build/rebuild switch for
 nightlies

---
 bob/devtools/scripts/ci.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/bob/devtools/scripts/ci.py b/bob/devtools/scripts/ci.py
index 531802fa..1a470ba3 100644
--- a/bob/devtools/scripts/ci.py
+++ b/bob/devtools/scripts/ci.py
@@ -514,6 +514,7 @@ def nightlies(ctx, order, dry_run):
         python=os.environ['PYTHON_VERSION'],  #python version
         condarc=None,  #custom build configuration
         config=CONDA_BUILD_CONFIG,
+        #no_test=False,
         append_file=CONDA_RECIPE_APPEND,
         server=SERVER,
         group=group,
@@ -529,9 +530,9 @@ def nightlies(ctx, order, dry_run):
     # branch
     # n.b.: can only arrive here if dry_run was ``False`` (no need to check
     # again)
-    if 'BDT_REBUILD' in os.environ and is_master:
-      tarball = os.environ['BDT_REBUILD']
-      del os.environ['BDT_REBUILD']
+    if 'BDT_BUILD' in os.environ and is_master:
+      tarball = os.environ['BDT_BUILD']
+      del os.environ['BDT_BUILD']
       deploy_conda_package(tarball, arch=None, stable=stable,
           public=(not private), username=os.environ['DOCUSER'],
           password=os.environ['DOCPASS'], overwrite=False, dry_run=dry_run)
-- 
GitLab