Skip to content

Commit

Permalink
BUG: Fix manual CI script to run again
Browse files Browse the repository at this point in the history
Didn't really use it much, since we now have decent CI and local builds
also work well enough, but it is nice to have it working.

Signed-off-by: Sebastian Berg <[email protected]>
  • Loading branch information
seberg committed Jan 9, 2025
1 parent 08fef78 commit f7b4721
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
cpp/build/
python/build/
ci/manual-ci-test.py
Docker
python/_skbuild
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ RUN mkdir -p /opt/legate-dataframe/conda-env-file
COPY ./conda/environments/*.yaml /opt/legate-dataframe/conda-env-file/

# To ensure we find the GPU version of legate in the docker build.
ARG CONDA_OVERRIDE_CUDA=$CUDA_VERSION
ARG CONDA_OVERRIDE_CUDA=12.4
RUN /bin/bash -c '/opt/conda/bin/mamba env create --name legate-dev --file \
/opt/legate-dataframe/conda-env-file/all_cuda-$(cut --output-delimiter="" -d "." -f 1,2 <<< ${CUDA_VERSION})_arch-x86_64.yaml'
/opt/legate-dataframe/conda-env-file/all_cuda-$(cut --output-delimiter="" -d "." -f 1,2 <<< ${CONDA_OVERRIDE_CUDA})_arch-x86_64.yaml'

# Build and install legate-dataframe
WORKDIR /opt/legate-dataframe
Expand Down

0 comments on commit f7b4721

Please sign in to comment.