This is an automated email from the ASF dual-hosted git repository.
laiyingchun pushed a commit to branch v2.5
in repository https://gitbox.apache.org/repos/asf/incubator-pegasus.git
The following commit(s) were added to refs/heads/v2.5 by this push:
new ccadc7321 chore(github): remove tarball before unit tests in case
there is no space left on device (#1643)
ccadc7321 is described below
commit ccadc732130e1d47af73d8cd939c24c2415816de
Author: Dan Wang <[email protected]>
AuthorDate: Tue Oct 17 18:41:33 2023 +0800
chore(github): remove tarball before unit tests in case there is no space
left on device (#1643)
https://github.com/apache/incubator-pegasus/issues/1642
Remove release tarballs before unit tests in case there is no space left on
device,
referring to https://github.com/apache/incubator-pegasus/pull/1630.
---
.github/workflows/lint_and_test_cpp.yaml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/workflows/lint_and_test_cpp.yaml
b/.github/workflows/lint_and_test_cpp.yaml
index abd20affb..05bfc5a2a 100644
--- a/.github/workflows/lint_and_test_cpp.yaml
+++ b/.github/workflows/lint_and_test_cpp.yaml
@@ -247,6 +247,7 @@ jobs:
- name: Tar files
run: |
tar -zxvf release__builder.tar
+ rm -f release__builder.tar
- name: Unit Testing
run: |
export
LD_LIBRARY_PATH=`pwd`/thirdparty/output/lib:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server
@@ -386,6 +387,7 @@ jobs:
- name: Tar files
run: |
tar -zxvf release_address_builder.tar
+ rm -f release_address_builder.tar
- name: Unit Testing
run: |
export
LD_LIBRARY_PATH=`pwd`/thirdparty/output/lib:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server
@@ -527,6 +529,7 @@ jobs:
# - name: Tar files
# run: |
# tar -zxvf release_undefined_builder.tar
+# rm -f release_undefined_builder.tar
# - name: Unit Testing
# run: |
# export
LD_LIBRARY_PATH=`pwd`/thirdparty/output/lib:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server
@@ -639,6 +642,7 @@ jobs:
- name: Tar files
run: |
tar -zxvf release_jemalloc_builder.tar
+ rm -f release_jemalloc_builder.tar
- name: Unit Testing
run: |
export
LD_LIBRARY_PATH=`pwd`/thirdparty/output/lib:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/amd64/server
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]