From 7b355680f1f35a285e3f0d2a86c36c487f563b3e Mon Sep 17 00:00:00 2001 From: Allen Wang Date: Thu, 3 Oct 2024 13:32:13 -0700 Subject: [PATCH] Fix the Circle CI error by removing the test-multi-arch job (#2203) * Remove test-multi-arch job in Circle CI * Remove test-multi-arch definitions --- .circleci/config.yml | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 42e95a7364..3fa1c30ae6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,37 +2,6 @@ version: 2.1 jobs: - test-multi-arch: - parameters: - platform: - type: string - environment: - _JAVA_OPTIONS: "-Xms512m -Xmx1g" - DOCKER_CLI_EXPERIMENTAL: "enabled" - working_directory: ~/workspace - machine: - image: ubuntu-2004:202107-02 - steps: - - checkout - - run: | - # install required qemu libraries - docker run --rm --privileged tonistiigi/binfmt:latest --install all - # run docker container with qemu emulation - docker run --rm \ - --platform << parameters.platform >> \ - --name qemu-cross-<< parameters.platform >> \ - --mount type=bind,source=${PWD},target=/github_workspace \ - --workdir /github_workspace \ - << parameters.platform >>/eclipse-temurin:11-jdk-focal uname -a; ./gradlew --no-daemon -PmaxParallelForks=1 build - - run: - command: mkdir ~/test-results - - run: - command: find ~/workspace -type f -regex ".*/test-results/.*xml" -exec ln {} ~/test-results/ \; - - store_test_results: - path: ~/test-results - - store_artifacts: - path: ~/test-results - build: environment: _JAVA_OPTIONS: "-Xms512m -Xmx1g" @@ -106,13 +75,6 @@ workflows: version: 2.1 build-and-publish: jobs: - - test-multi-arch: - matrix: - parameters: - platform: ["s390x"] - filters: - tags: - only: /.*/ - build: filters: tags: @@ -120,7 +82,6 @@ workflows: - integration-test: requires: - build - - test-multi-arch filters: branches: ignore: /.*/