Skip to content
Snippets Groups Projects
Commit 765cffe6 authored by Jorropo's avatar Jorropo
Browse files

build,docker: add support for riscv64

parent 16494692
Branches
Tags
No related merge requests found
...@@ -107,18 +107,31 @@ jobs: ...@@ -107,18 +107,31 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new cache-to: type=local,dest=/tmp/.buildx-cache-new
- name: Build Docker image (linux/riscv64)
uses: docker/build-push-action@v4
with:
platforms: linux/riscv64
context: .
push: false
load: true
file: ./Dockerfile
tags: ${{ env.IMAGE_NAME }}:linux-riscv64
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new
# We test all the images on amd64 host here. This uses QEMU to emulate # We test all the images on amd64 host here. This uses QEMU to emulate
# the other platforms. # the other platforms.
- run: docker run --rm $IMAGE_NAME:linux-amd64 --version - run: docker run --rm $IMAGE_NAME:linux-amd64 --version
- run: docker run --rm $IMAGE_NAME:linux-arm-v7 --version - run: docker run --rm $IMAGE_NAME:linux-arm-v7 --version
- run: docker run --rm $IMAGE_NAME:linux-arm64-v8 --version - run: docker run --rm $IMAGE_NAME:linux-arm64-v8 --version
- run: docker run --rm $IMAGE_NAME:linux-riscv64 --version
# This will only push the previously built images. # This will only push the previously built images.
- if: github.event_name != 'workflow_dispatch' || github.event.inputs.push == 'true' - if: github.event_name != 'workflow_dispatch' || github.event.inputs.push == 'true'
name: Publish to Docker Hub name: Publish to Docker Hub
uses: docker/build-push-action@v4 uses: docker/build-push-action@v4
with: with:
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8 platforms: linux/amd64,linux/arm/v7,linux/arm64/v8,linux/riscv64
context: . context: .
push: true push: true
file: ./Dockerfile file: ./Dockerfile
......
...@@ -16,6 +16,7 @@ SUPPORTED_PLATFORMS += linux-arm ...@@ -16,6 +16,7 @@ SUPPORTED_PLATFORMS += linux-arm
SUPPORTED_PLATFORMS += linux-arm64 SUPPORTED_PLATFORMS += linux-arm64
SUPPORTED_PLATFORMS += linux-386 SUPPORTED_PLATFORMS += linux-386
SUPPORTED_PLATFORMS += linux-amd64 SUPPORTED_PLATFORMS += linux-amd64
SUPPORTED_PLATFORMS += linux-riscv64
SUPPORTED_PLATFORMS += darwin-amd64 SUPPORTED_PLATFORMS += darwin-amd64
ifeq ($(shell bin/check_go_version "1.16.0" 2>/dev/null; echo $$?),0) ifeq ($(shell bin/check_go_version "1.16.0" 2>/dev/null; echo $$?),0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment