Skip to content

Commit

Permalink
[ci][py11/2] support docker build image for arm64 (#36586)
Browse files Browse the repository at this point in the history
  • Loading branch information
can-anyscale authored Jun 26, 2023
1 parent 82f96d6 commit 2f84fa3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .buildkite/pipeline.arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
- py38
- py39
- py310
- py311

- label: ":mechanical_arm: :docker: Build Images: {{matrix}} [aarch64] cu117/cu118"
conditions: ["RAY_CI_PYTHON_DEPENDENCIES_AFFECTED", "RAY_CI_DOCKER_AFFECTED", "RAY_CI_CORE_CPP_AFFECTED"]
Expand All @@ -63,3 +64,4 @@
- py38
- py39
- py310
- py311
2 changes: 1 addition & 1 deletion docker/base-deps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ RUN sudo apt-get update -y && sudo apt-get upgrade -y \
# We install cmake temporarily to get psutil
&& sudo apt-get autoremove -y cmake zlib1g-dev \
# We keep g++ on GPU images, because uninstalling removes CUDA Devel tooling
$(if [ "$BASE_IMAGE" = "ubuntu:focal" ]; then echo \
$(if [[ "$BASE_IMAGE" == "ubuntu:focal" && "$HOSTTYPE" == "x86_64" ]]; then echo \
g++; fi) \
# Either install kubectl or remove wget
&& (if [ "$AUTOSCALER" = "autoscaler" ]; \
Expand Down

0 comments on commit 2f84fa3

Please sign in to comment.