From 805c2de3a4c384697a7bd77548ebac7d8c3362b7 Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Sun, 29 Oct 2023 14:42:21 +0100 Subject: [PATCH] Manually install deps --- .github/workflows/test.yaml | 29 +++++++++++++++++++---------- 1 file changed, 19 insertions(+), 10 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 10dd0f6bc..47390c1f2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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 \ No newline at end of file + doit test_unit_gpu