[CI] Add nightly CI job to test against dev version of deps (#10351)

* [CI] Add nightly CI job to test against dev version of deps

* Update build-containers.sh

* Add build step

* Wait for build artifact

* Try pinning dask

* Address reviewers' comments

* Fix unbound variable error

* Specify dev version exactly

* Pin dask=2024.1.1
This commit is contained in:
Philip Hyunsu Cho
2024-06-03 19:28:55 -07:00
committed by GitHub
parent eb6622ff7a
commit 4057f861c1
14 changed files with 120 additions and 18 deletions

View File

@@ -10,7 +10,7 @@ RUN \
yum update -y && \
yum install -y devtoolset-9 && \
# Python
wget -nv -O conda.sh https://github.com/conda-forge/miniforge/releases/download/22.11.1-2/Mambaforge-22.11.1-2-Linux-aarch64.sh && \
wget -nv -O conda.sh https://github.com/conda-forge/miniforge/releases/download/24.3.0-0/Miniforge3-24.3.0-0-Linux-aarch64.sh && \
bash conda.sh -b -p /opt/mambaforge
ENV PATH=/opt/mambaforge/bin:$PATH
@@ -23,7 +23,7 @@ ENV GOSU_VERSION 1.10
COPY conda_env/aarch64_test.yml /scripts/
RUN mamba create -n aarch64_test && \
mamba env update -n aarch64_test --file=/scripts/aarch64_test.yml && \
mamba clean --all
mamba clean --all --yes
# Install lightweight sudo (not bound to TTY)
RUN set -ex; \