Skip to content

Commit 4aaf8dc

Browse files
authored
Merge branch 'main' into batch_pipeline_status
2 parents a9fd2d7 + dbddaa9 commit 4aaf8dc

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

.github/workflows/integration-tests-mysql-elasticsearch.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Free Disk Space (Ubuntu)
5151
uses: jlumbroso/free-disk-space@main
5252
with:
53-
tool-cache: false
53+
tool-cache: true
5454
android: true
5555
dotnet: true
5656
haskell: true
@@ -110,6 +110,13 @@ jobs:
110110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
111111
run: mvn -DskipTests clean install -pl :openmetadata-integration-tests -am
112112

113+
- name: Free build artifacts
114+
run: |
115+
rm -rf openmetadata-service/target/lib openmetadata-service/target/classes
116+
rm -rf openmetadata-spec/target openmetadata-sdk/target common/target
117+
rm -rf openmetadata-shaded-deps/*/target
118+
df -h /
119+
113120
- name: Run Integration Tests (MySQL + Elasticsearch)
114121
env:
115122
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/integration-tests-postgres-opensearch.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Free Disk Space (Ubuntu)
5151
uses: jlumbroso/free-disk-space@main
5252
with:
53-
tool-cache: false
53+
tool-cache: true
5454
android: true
5555
dotnet: true
5656
haskell: true
@@ -110,6 +110,13 @@ jobs:
110110
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
111111
run: mvn -DskipTests clean install -pl :openmetadata-integration-tests -am
112112

113+
- name: Free build artifacts
114+
run: |
115+
rm -rf openmetadata-service/target/lib openmetadata-service/target/classes
116+
rm -rf openmetadata-spec/target openmetadata-sdk/target common/target
117+
rm -rf openmetadata-shaded-deps/*/target
118+
df -h /
119+
113120
- name: Run Integration Tests (PostgreSQL + OpenSearch)
114121
env:
115122
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)