From 4d9e146c5eada80a51917dbb0bb92382dff4761c Mon Sep 17 00:00:00 2001 From: tongke6 <124763920+tongke6@users.noreply.github.com> Date: Tue, 25 Feb 2025 14:44:16 +0800 Subject: [PATCH 1/2] fix docker build failed due to segmenfault caused by github action runners * fix https://github.com/actions/runner-images/issues/11589 --- .github/workflows/docker-image.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 1dc08af..8d1c045 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -4,9 +4,13 @@ on: branches: [ "main" ] jobs: build: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + with: + image: tonistiigi/binfmt:qemu-v7.0.0-28 - name: Login to Dockerhub uses: docker/login-action@v3 with: From 7202c841e191a1a7fa7bd316ed68935c73079452 Mon Sep 17 00:00:00 2001 From: tongke6 <124763920+tongke6@users.noreply.github.com> Date: Tue, 25 Feb 2025 14:45:54 +0800 Subject: [PATCH 2/2] tigger file changes --- dockerfiles/scql-ci.DockerFile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfiles/scql-ci.DockerFile b/dockerfiles/scql-ci.DockerFile index b18d4c0..73e5d04 100644 --- a/dockerfiles/scql-ci.DockerFile +++ b/dockerfiles/scql-ci.DockerFile @@ -1,6 +1,7 @@ FROM secretflow/ubuntu-base-ci:latest ARG TARGETPLATFORM + ARG GO_VERSION=1.24.0 # install go