Skip to content

Commit

Permalink
Remove conda_clean and conda_build_purge steps.
Browse files Browse the repository at this point in the history
Looks like conda-build has become a little less fucked, let's hope
for the best.
whitequark committed Jan 19, 2018
1 parent e3c36a0 commit c109dc7
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions master.cfg
Original file line number Diff line number Diff line change
@@ -141,30 +141,6 @@ def addUpdateSteps(factory, project):
def addCondaBuildSteps(factory, project, package, is_xilinx=False, test=True, channel=None):
addUpdateSteps(factory, project)

factory.addStep(
ShellCommand(
name = 'conda_clean',
command = ['conda', 'clean', '--index-cache'],
description = 'cleaning',
descriptionDone = 'clean',
descriptionSuffix = 'conda cache',
haltOnFailure = True,
env = condaEnv(),
locks = default_locks +
[conda_lock.access('exclusive')]))

factory.addStep(
ShellCommand(
name = 'conda_build_purge',
command = ['conda', 'build', 'purge-all'],
description = 'purging',
descriptionDone = 'purge',
descriptionSuffix = 'build dir',
haltOnFailure = True,
env = condaEnv(),
locks = default_locks +
[conda_lock.access('exclusive')]))

build_cmd = ['conda', 'build', '--python', '3.5']
if channel:
build_cmd += ['--channel',

0 comments on commit c109dc7

Please sign in to comment.