From: Tim Neumann Date: Sun, 28 Dec 2025 23:29:23 +0000 (+0100) Subject: ci : re-enable rocm build on amd64 (#18439) X-Git-Tag: upstream/0.0.7599~34 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=382808c14b60159f4df2e292e1a3ca5275894271;p=pkg%2Fggml%2Fsources%2Fllama.cpp ci : re-enable rocm build on amd64 (#18439) This was disabled in #9340 due to compiler crash, but seems to build now as confirmed by the latest comments in #11913. I've also managed to build the image with `docker build -f .devops/rocm.Dockerfile .` (for all three stages, `full`, `server` and `light`). A quick attempt at trying to build an arm64 image failed. Since none of the other images are build for arm, I only enabled the amd64 one. The `runs_on` option was added to match the other entries. --- diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7ca11b1d..bfd12707 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -45,8 +45,7 @@ jobs: - { tag: "intel", dockerfile: ".devops/intel.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: true, runs_on: "ubuntu-22.04" } - { tag: "vulkan", dockerfile: ".devops/vulkan.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false, runs_on: "ubuntu-22.04" } - { tag: "s390x", dockerfile: ".devops/s390x.Dockerfile", platforms: "linux/s390x", full: true, light: true, server: true, free_disk_space: false, runs_on: "ubuntu-22.04-s390x" } - # Note: the rocm images are failing due to a compiler error and are disabled until this is fixed to allow the workflow to complete - #- {tag: "rocm", dockerfile: ".devops/rocm.Dockerfile", platforms: "linux/amd64,linux/arm64", full: true, light: true, server: true, free_disk_space: true } + - { tag: "rocm", dockerfile: ".devops/rocm.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: true, runs_on: "ubuntu-22.04" } steps: - name: Check out the repo uses: actions/checkout@v4