Skip to content

Commit

Permalink
chore(github): free disk space after packaging with jemalloc in githu…
Browse files Browse the repository at this point in the history
…b workflows (apache#1581)

apache#1576

In the workflow that builds pegasus with jemalloc, more space could be
freed after packaging is tested.
  • Loading branch information
empiredan authored Aug 11, 2023
1 parent fc61628 commit 7fe41d4
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/lint_and_test_cpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,9 @@ jobs:
# path: |
# /github/home/.ccache
# key: ubsan_ccache
# - name: Free Disk Space (Ubuntu)
# run: |
# .github/workflows/free_disk_space.sh
# - uses: dorny/paths-filter@v2
# id: changes
# with:
Expand Down Expand Up @@ -591,9 +594,13 @@ jobs:
run: |
find ./build/latest/src/ -name '*CMakeFiles*' -type d -exec rm -rf "{}" +
- name: Pack Server
run: ./run.sh pack_server -j
run: |
./run.sh pack_server -j
rm -rf pegasus-server-*
- name: Pack Tools
run: ./run.sh pack_tools -j
run: |
./run.sh pack_tools -j
rm -rf pegasus-tools-*
- name: Tar files
run: |
mv thirdparty/hadoop-bin ./
Expand Down

0 comments on commit 7fe41d4

Please sign in to comment.