Skip to content

Commit e292cba

Browse files
author
Devin Bost
committed
Attempt to fix #6207 and add more debugging information by pruning docker containers.
1 parent 779a406 commit e292cba

File tree

6 files changed

+36
-0
lines changed

6 files changed

+36
-0
lines changed

.github/workflows/ci-integration-messaging.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@ jobs:
4444
- name: build artifacts and docker image
4545
run: mvn -B install -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdocker -DskipTests
4646

47+
- name: clean up
48+
run: docker system prune -f
49+
50+
- name: inspect docker disk space due to 2GB error
51+
run: docker run -it --rm alpine:3.6 df -h
52+
4753
- name: run integration tests
4854
run: mvn -B -f tests/pom.xml test -DintegrationTestSuiteFile=pulsar-messaging.xml -DintegrationTests -DredirectTestOutputToFile=false

.github/workflows/ci-integration-schema.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@ jobs:
4444
- name: build artifacts and docker image
4545
run: mvn -B install -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdocker -DskipTests
4646

47+
- name: clean up
48+
run: docker system prune -f
49+
50+
- name: inspect docker disk space due to 2GB error
51+
run: docker run -it --rm alpine:3.6 df -h
52+
4753
- name: run integration tests
4854
run: mvn -B -f tests/pom.xml test -DintegrationTestSuiteFile=pulsar-schema.xml -DintegrationTests -DredirectTestOutputToFile=false

.github/workflows/ci-integration-sql.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,11 @@ jobs:
4949
- name: build artifacts and docker image
5050
run: mvn -B install -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdocker -DskipTests
5151

52+
- name: clean up
53+
run: docker system prune -f
54+
55+
- name: inspect docker disk space due to 2GB error
56+
run: docker run -it --rm alpine:3.6 df -h
57+
5258
- name: run integration tests
5359
run: mvn -B -f tests/pom.xml test -DintegrationTestSuiteFile=pulsar-sql.xml -DintegrationTests -DredirectTestOutputToFile=false

.github/workflows/ci-integration-standalone.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@ jobs:
4444
- name: build artifacts and docker image
4545
run: mvn -B install -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdocker -DskipTests
4646

47+
- name: clean up
48+
run: docker system prune -f
49+
50+
- name: inspect docker disk space due to 2GB error
51+
run: docker run -it --rm alpine:3.6 df -h
52+
4753
- name: run integration tests
4854
run: mvn -B -f tests/pom.xml test -DintegrationTestSuiteFile=pulsar-standalone.xml -DintegrationTests -DredirectTestOutputToFile=false

.github/workflows/ci-integration-tiered-filesystem.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@ jobs:
4444
- name: build artifacts and docker image
4545
run: mvn -B install -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdocker -DskipTests
4646

47+
- name: clean up
48+
run: docker system prune -f
49+
50+
- name: inspect docker disk space due to 2GB error
51+
run: docker run -it --rm alpine:3.6 df -h
52+
4753
- name: run integration tests
4854
run: mvn -B -f tests/pom.xml test -DintegrationTestSuiteFile=tiered-filesystem-storage.xml -DintegrationTests -DredirectTestOutputToFile=false

.github/workflows/ci-integration-tiered-jcloud.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,11 @@ jobs:
4444
- name: build artifacts and docker image
4545
run: mvn -B install -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdocker -DskipTests
4646

47+
- name: clean up
48+
run: docker system prune -f
49+
50+
- name: inspect docker disk space due to 2GB error
51+
run: docker run -it --rm alpine:3.6 df -h
52+
4753
- name: run integration tests
4854
run: mvn -B -f tests/pom.xml test -DintegrationTestSuiteFile=tiered-jcloud-storage.xml -DintegrationTests -DredirectTestOutputToFile=false

0 commit comments

Comments
 (0)