Skip to content

Commit 30f399e

Browse files
authored
Remove ciMate (#3631)
1 parent 87da74e commit 30f399e

File tree

6 files changed

+0
-60
lines changed

6 files changed

+0
-60
lines changed

.circleci/config.yml

-9
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ jobs:
77
- checkout
88
- run:
99
command: ./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'
10-
- run:
11-
name: aggregate test reports with ciMate
12-
when: always
13-
environment:
14-
CIMATE_PROJECT_ID: 2348n4vl
15-
command: |
16-
wget -q https://get.cimate.io/release/linux/cimate
17-
chmod +x cimate
18-
./cimate "**/TEST-*.xml"
1910
- run:
2011
name: Save test results
2112
command: |

.github/workflows/ci-docker-wormhole.yml

-9
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,3 @@ jobs:
1818
-w "$PWD" \
1919
openjdk:8-jdk-alpine \
2020
./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'
21-
- name: aggregate test reports with ciMate
22-
if: always()
23-
continue-on-error: true
24-
env:
25-
CIMATE_PROJECT_ID: 2348n4vl
26-
run: |
27-
wget -q https://get.cimate.io/release/linux/cimate
28-
chmod +x cimate
29-
./cimate "**/TEST-*.xml"

.github/workflows/ci-examples.yml

-10
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,3 @@ jobs:
5757
working-directory: ./examples/
5858
run: |
5959
./gradlew --no-daemon --continue --scan --info ${{matrix.gradle_args}}
60-
- name: Aggregate Examples test reports with ciMate
61-
if: always()
62-
continue-on-error: true
63-
env:
64-
CIMATE_PROJECT_ID: 2348n4vl
65-
CIMATE_CI_KEY: "Examples / ${{ runner.os }} / ${{matrix.gradle_args}}"
66-
run: |
67-
wget -q https://get.cimate.io/release/linux/cimate
68-
chmod +x cimate
69-
./cimate "**/TEST-*.xml"

.github/workflows/ci-rootless.yml

-10
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,3 @@ jobs:
3232
DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock docker info || ls -la $XDG_RUNTIME_DIR
3333
- name: Build with Gradle
3434
run: ./gradlew --no-daemon --scan testcontainers:test --tests '*GenericContainerRuleTest'
35-
- name: aggregate test reports with ciMate
36-
if: always()
37-
continue-on-error: true
38-
env:
39-
CIMATE_PROJECT_ID: 2348n4vl
40-
CIMATE_CI_KEY: "CI / rootless Docker (${{ matrix.XDG_RUNTIME_DIR }})"
41-
run: |
42-
wget -q https://get.cimate.io/release/linux/cimate
43-
chmod +x cimate
44-
./cimate "**/TEST-*.xml"

.github/workflows/ci.yml

-20
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,6 @@ jobs:
5454
- name: Build and test with Gradle (${{matrix.gradle_args}})
5555
run: |
5656
./gradlew --no-daemon --continue --scan ${{matrix.gradle_args}}
57-
- name: Aggregate test reports with ciMate
58-
if: always()
59-
continue-on-error: true
60-
env:
61-
CIMATE_PROJECT_ID: 2348n4vl
62-
CIMATE_CI_KEY: "CI / ${{ runner.os }} / ${{matrix.gradle_args}}"
63-
run: |
64-
wget -q https://get.cimate.io/release/linux/cimate
65-
chmod +x cimate
66-
./cimate "**/TEST-*.xml"
6757
httpclient5_test:
6858
runs-on: ubuntu-18.04
6959
steps:
@@ -73,13 +63,3 @@ jobs:
7363
echo "transport.type=httpclient5" > $HOME/.testcontainers.properties
7464
cat $HOME/.testcontainers.properties
7565
./gradlew --no-daemon --scan testcontainers:test --tests '*EventStreamTest'
76-
- name: aggregate test reports with ciMate
77-
if: always()
78-
continue-on-error: true
79-
env:
80-
CIMATE_PROJECT_ID: 2348n4vl
81-
CIMATE_CI_KEY: "CI / Apache HttpClient5"
82-
run: |
83-
wget -q https://get.cimate.io/release/linux/cimate
84-
chmod +x cimate
85-
./cimate "**/TEST-*.xml"

azure-pipelines.yml

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ jobs:
1717
tasks: "clean testcontainers:test --tests GenericContainerRuleTest"
1818
publishJUnitResults: true
1919
testResultsFiles: '**/TEST-*.xml'
20-
- script: wget -q https://get.cimate.io/release/linux/cimate && chmod +x cimate && ./cimate "**/TEST-*.xml"
21-
condition: and(succeededOrFailed(),eq(variables['Agent.OS'], 'Linux'))
2220

2321
# Run all tests when running the Windows CI tests
2422
- task: Gradle@2

0 commit comments

Comments
 (0)