Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions dockerfiles/release-ci-aarch64.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ RUN curl -L -O "https://github.com/conda-forge/miniforge/releases/latest/downloa
# Add conda to path
ENV PATH="/root/miniforge3/bin:${PATH}"

# install uv
RUN curl -sL https://astral.sh/uv/install.sh -o uv_install.sh \
&& sh uv_install.sh \
&& rm -f uv_install.sh

# Install lld
RUN /root/miniforge3/bin/conda install -c conda-forge lld nasm cmake gxx==11.4.0 clangxx -y \
&& /root/miniforge3/bin/conda clean -afy
Expand Down
5 changes: 5 additions & 0 deletions dockerfiles/release-ci.DockerFile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ RUN /root/miniconda3/bin/conda install mamba -c conda-forge --force-reinstall -y
# Add conda to path
ENV PATH="/root/miniconda3/bin:${PATH}"

# install uv
RUN curl -sL https://astral.sh/uv/install.sh -o uv_install.sh \
&& sh uv_install.sh \
&& rm -f uv_install.sh

# Install lld
RUN /root/miniconda3/bin/conda install -c conda-forge perl lld nasm cmake gxx==11.4.0 -y \
&& /root/miniconda3/bin/conda clean -afy
Expand Down