From f8212c75fffba9af22c3f3831ea0a8caade518d2 Mon Sep 17 00:00:00 2001 From: Modassar Rana Date: Fri, 19 Apr 2024 21:42:06 +0530 Subject: [PATCH] feat: Add S390x support (#138) #### Modifications Added linux/s390x ( platform ) in the build github workflow #### Result https://github.com/modassarrana89/modelmesh/actions/runs/8688245342/job/23823937204 // Build operation run in local workflow is a success. Attached archieve log for refernece [logs_22763759557.zip](https://github.com/kserve/modelmesh/files/14978607/logs_22763759557.zip) --------- Signed-off-by: Modassar Rana --- .github/workflows/build.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index eaa665c7..c48e5dcb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -78,12 +78,10 @@ jobs: # print env vars for debugging cat "$GITHUB_ENV" - - name: Build and push runtime image uses: docker/build-push-action@v4 with: - # for linux/s390x, maven errors due to missing io.grpc:protoc-gen-grpc-java:exe:linux-s390_64:1.51.1 - platforms: linux/amd64,linux/arm64/v8,linux/ppc64le + platforms: linux/amd64,linux/arm64/v8,linux/ppc64le,linux/s390x target: runtime push: ${{ github.event_name == 'push' }} tags: ${{ env.IMAGE_NAME }}:${{ env.VERSION }}