@@ -39,11 +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 }
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: "arm64", dockerfile: ".devops/arm64.Dockerfile", platforms: "linux/arm64", full: true, light: true, server: true, free_disk_space: false }
4748 # Note: the rocm images are failing due to a compiler error and are disabled until this is fixed to allow the workflow to complete
4849 # - {tag: "rocm", dockerfile: ".devops/rocm.Dockerfile", platforms: "linux/amd64,linux/arm64", full: true, light: true, server: true, free_disk_space: true }
4950 steps :
@@ -52,14 +53,25 @@ jobs:
5253 with :
5354 fetch-depth : 0 # preserve git history, so we can determine the build number
5455
56+ # - name: Set up QEMU
57+ # uses: docker/setup-qemu-action@v3
58+ # with:
59+ # image: tonistiigi/binfmt:qemu-v7.0.0-28
60+
61+ # - name: Set up Docker Buildx
62+ # uses: docker/setup-buildx-action@v3
63+
5564 - name : Set up QEMU
65+ if : matrix.config.platforms != 'linux/arm64'
5666 uses : docker/setup-qemu-action@v3
5767 with :
5868 image : tonistiigi/binfmt:qemu-v7.0.0-28
5969
6070 - name : Set up Docker Buildx
71+ if : matrix.config.platforms != 'linux/arm64'
6172 uses : docker/setup-buildx-action@v3
6273
74+
6375 - name : Log in to Docker Hub
6476 uses : docker/login-action@v2
6577 with :
0 commit comments