Skip to content

Commit 7b35568

Browse files
authored
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
1 parent f925566 commit 7b35568

File tree

1 file changed

+0
-39
lines changed

1 file changed

+0
-39
lines changed

.circleci/config.yml

-39
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,6 @@ version: 2.1
22

33
jobs:
44

5-
test-multi-arch:
6-
parameters:
7-
platform:
8-
type: string
9-
environment:
10-
_JAVA_OPTIONS: "-Xms512m -Xmx1g"
11-
DOCKER_CLI_EXPERIMENTAL: "enabled"
12-
working_directory: ~/workspace
13-
machine:
14-
image: ubuntu-2004:202107-02
15-
steps:
16-
- checkout
17-
- run: |
18-
# install required qemu libraries
19-
docker run --rm --privileged tonistiigi/binfmt:latest --install all
20-
# run docker container with qemu emulation
21-
docker run --rm \
22-
--platform << parameters.platform >> \
23-
--name qemu-cross-<< parameters.platform >> \
24-
--mount type=bind,source=${PWD},target=/github_workspace \
25-
--workdir /github_workspace \
26-
<< parameters.platform >>/eclipse-temurin:11-jdk-focal uname -a; ./gradlew --no-daemon -PmaxParallelForks=1 build
27-
- run:
28-
command: mkdir ~/test-results
29-
- run:
30-
command: find ~/workspace -type f -regex ".*/test-results/.*xml" -exec ln {} ~/test-results/ \;
31-
- store_test_results:
32-
path: ~/test-results
33-
- store_artifacts:
34-
path: ~/test-results
35-
365
build:
376
environment:
387
_JAVA_OPTIONS: "-Xms512m -Xmx1g"
@@ -106,21 +75,13 @@ workflows:
10675
version: 2.1
10776
build-and-publish:
10877
jobs:
109-
- test-multi-arch:
110-
matrix:
111-
parameters:
112-
platform: ["s390x"]
113-
filters:
114-
tags:
115-
only: /.*/
11678
- build:
11779
filters:
11880
tags:
11981
only: /.*/
12082
- integration-test:
12183
requires:
12284
- build
123-
- test-multi-arch
12485
filters:
12586
branches:
12687
ignore: /.*/

0 commit comments

Comments
 (0)