2828  push_to_registry :
2929    name : Push Docker image to Docker Hub 
3030
31-     runs-on : ubuntu-22.04 
31+     runs-on : ${{ matrix.config.runs_on }} 
3232    env :
3333      COMMIT_SHA : ${{ github.sha }} 
3434    strategy :
@@ -39,12 +39,12 @@ jobs:
3939          #  Note: the arm64 images are failing, which prevents the amd64 images from being built
4040          #  https://github.com/ggml-org/llama.cpp/issues/11888
4141          # - { tag: "cpu", dockerfile: ".devops/cpu.Dockerfile", platforms: "linux/amd64,linux/arm64", full: true, light: true, server: true, free_disk_space: false }
42-           - { tag: "cpu", dockerfile: ".devops/cpu.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false } 
43-           - { tag: "cuda", dockerfile: ".devops/cuda.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false } 
44-           - { tag: "musa", dockerfile: ".devops/musa.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: true } 
45-           - { tag: "intel", dockerfile: ".devops/intel.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: true } 
46-           - { tag: "vulkan", dockerfile: ".devops/vulkan.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false } 
47-           - { tag: "s390x", dockerfile: ".devops/s390x.Dockerfile", platforms: "linux/s390x", full: true, light: true, server: true, free_disk_space: false } 
42+           - { tag: "cpu",     dockerfile: ".devops/cpu.Dockerfile",     platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false, runs_on: "ubuntu-22.04"  } 
43+           - { tag: "cuda",    dockerfile: ".devops/cuda.Dockerfile",    platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false, runs_on: "ubuntu-22.04"  } 
44+           - { tag: "musa",    dockerfile: ".devops/musa.Dockerfile",    platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: true,  runs_on: "ubuntu-22.04"  } 
45+           - { tag: "intel",   dockerfile: ".devops/intel.Dockerfile",   platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: true,  runs_on: "ubuntu-22.04"  } 
46+           - { tag: "vulkan", dockerfile: ".devops/vulkan.Dockerfile", platforms: "linux/amd64", full: true, light: true, server: true, free_disk_space: false, runs_on: "ubuntu-22.04"  } 
47+           - { 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"  } 
4848          #  Note: the rocm images are failing due to a compiler error and are disabled until this is fixed to allow the workflow to complete
4949          # - {tag: "rocm", dockerfile: ".devops/rocm.Dockerfile", platforms: "linux/amd64,linux/arm64", full: true, light: true, server: true, free_disk_space: true }
5050    steps :
5454          fetch-depth : 0  #  preserve git history, so we can determine the build number
5555
5656      - name : Set up QEMU 
57+         if : ${{ matrix.config.tag != 's390x' }} 
5758        uses : docker/setup-qemu-action@v3 
5859        with :
5960          image : tonistiigi/binfmt:qemu-v7.0.0-28 
0 commit comments