Skip to content

Commit

Permalink
Manually install deps
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 29, 2023
1 parent 928984c commit 805c2de
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,17 +143,26 @@ jobs:
PYDEVD_DISABLE_FILE_VALIDATION: 1
AGENT_TOOLSDIRECTORY: /opt/hostedtoolcache
steps:
- uses: holoviz-dev/holoviz_tasks/install@v0.1a17
- uses: actions/checkout@v3
with:
name: unit_test_suite
python-version: "3.10.13"
channel-priority: strict
channels: pyviz/label/dev,numba,nvidia,rapidsai,conda-forge,nodefaults
envs: "-o tests -o gpu"
cache: true
conda-update: true
id: install
fetch-depth: "100"
- uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: latest
auto-update-conda: true
- name: Conda Setup
run: |
echo "::group::Setup conda-libmamba-solver"
conda install -n base conda-libmamba-solver
conda config --set solver libmamba
echo "::endgroup::"
shell: bash -el {0}
- name: Install environment
run: |
conda create -n test-environment -c conda-forge -c nvidia -c rapidsai python=3.10 cudf cupy numba dask spatialpandas xarray
pip install -e . --no-deps --no-build-isolation
shell: bash -el {0}
- name: doit test_unit_gpu
run: |
conda activate test-environment
doit test_unit_gpu
doit test_unit_gpu

0 comments on commit 805c2de

Please sign in to comment.