Skip to content

Commit 1bc909b

Browse files
committed
Manually install deps
1 parent 928984c commit 1bc909b

File tree

1 file changed

+16
-9
lines changed

1 file changed

+16
-9
lines changed

.github/workflows/test.yaml

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,23 @@ jobs:
143143
PYDEVD_DISABLE_FILE_VALIDATION: 1
144144
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
145145
steps:
146-
- uses: holoviz-dev/holoviz_tasks/[email protected]
146+
- uses: actions/checkout@v3
147147
with:
148-
name: unit_test_suite
149-
python-version: "3.10.13"
150-
channel-priority: strict
151-
channels: pyviz/label/dev,numba,nvidia,rapidsai,conda-forge,nodefaults
152-
envs: "-o tests -o gpu"
153-
cache: true
154-
conda-update: true
155-
id: install
148+
fetch-depth: "100"
149+
- uses: conda-incubator/setup-miniconda@v2
150+
with:
151+
miniconda-version: latest
152+
auto-update-conda: true
153+
- run: |
154+
echo "::group::Setup conda-libmamba-solver"
155+
conda install -n base conda-libmamba-solver
156+
conda config --set solver libmamba
157+
echo "::endgroup::"
158+
shell: bash -el {0}
159+
- run: |
160+
echo "::group::Setup conda environment"
161+
conda create -n test-environment -c conda-forge -c nvidia -c rapidsai python=3.10 cudf cupy numba dask spatialpandas xarray
162+
pip install -e . --no-deps --no-build-isolation
156163
- name: doit test_unit_gpu
157164
run: |
158165
conda activate test-environment

0 commit comments

Comments
 (0)