diff --git a/templates/ci/checks/style.sh b/templates/ci/checks/style.sh index 1f470c21..861e4371 100644 --- a/templates/ci/checks/style.sh +++ b/templates/ci/checks/style.sh @@ -14,7 +14,8 @@ LC_ALL=C.UTF-8 LANG=C.UTF-8 # Activate common conda env -source activate gdf +. /opt/conda/etc/profile.d/conda.sh +conda activate rapids # Run isort and get results/return code ISORT=`isort --recursive --check-only python` diff --git a/templates/ci/cpu/cpubuild.sh b/templates/ci/cpu/cpubuild.sh index 26123628..8b762d53 100644 --- a/templates/ci/cpu/cpubuild.sh +++ b/templates/ci/cpu/cpubuild.sh @@ -43,7 +43,8 @@ logger "Get env..." env logger "Activate conda env..." -source activate gdf +. /opt/conda/etc/profile.d/conda.sh +conda activate rapids logger "Check versions..." python --version diff --git a/templates/ci/gpu/gpubuild.sh b/templates/ci/gpu/gpubuild.sh index 68dc5c5c..e2e8468a 100644 --- a/templates/ci/gpu/gpubuild.sh +++ b/templates/ci/gpu/gpubuild.sh @@ -44,7 +44,8 @@ logger "Check GPU usage..." nvidia-smi logger "Activate conda env..." -source activate gdf +. /opt/conda/etc/profile.d/conda.sh +conda activate rapids ##* ## EDIT: Install all build, runtime, and test dependencies conda install || || ||