Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Commit cded6d1

Browse files
authored
Build packages using mambabuild (#472)
Use `mambabuild` to build `conda` packages. This should speed up the builds and help to debug `conda` conflict issues Authors: - Jordan Jacobelli (https://github.com/Ethyling) Approvers: - AJ Schmidt (https://github.com/ajschmidt8) URL: #472
1 parent 8b8c5a4 commit cded6d1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

ci/cpu/build.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
# Copyright (c) 2020, NVIDIA CORPORATION.
2+
# Copyright (c) 2020-2022, NVIDIA CORPORATION.
33
################################################################################
44
# CLX cpu build
55
################################################################################
@@ -53,12 +53,15 @@ conda list --show-channel-urls
5353
# FIX Added to deal with Anancoda SSL verification issues during conda builds
5454
conda config --set ssl_verify False
5555

56+
# FIXME: Remove
57+
gpuci_mamba_retry install -c conda-forge boa
58+
5659
###############################################################################
5760
# BUILD - Conda package build
5861
################################################################################
5962

6063
gpuci_logger "Build conda pkg for clx"
61-
conda build conda/recipes/clx
64+
gpuci_conda_retry mambabuild conda/recipes/clx
6265

6366
################################################################################
6467
# UPLOAD - Conda package

ci/gpu/build.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,13 @@ conda list --show-channel-urls
6666
# BUILD - Build clx
6767
################################################################################
6868

69+
#TODO: Move boa installation to gpuci/rapidsai
70+
gpuci_mamba_retry install boa
71+
6972
gpuci_logger "Build and install clx..."
7073
cd "${WORKSPACE}"
7174
CONDA_BLD_DIR="${WORKSPACE}/.conda-bld"
72-
gpuci_conda_retry build --croot "${CONDA_BLD_DIR}" conda/recipes/clx
75+
gpuci_conda_retry mambabuild --croot "${CONDA_BLD_DIR}" conda/recipes/clx
7376
gpuci_mamba_retry install -c "${CONDA_BLD_DIR}" clx
7477

7578
################################################################################

0 commit comments

Comments
 (0)