Skip to content

Commit

Permalink
Cleanup space in CI (#2814)
Browse files Browse the repository at this point in the history
  • Loading branch information
siyuan0322 committed Jun 5, 2023
1 parent 3f50d7d commit 28a3605
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build-graphscope-images-linux.yml
Expand Up @@ -36,13 +36,22 @@ jobs:
- name: Build GraphScope Image
run: |
curl -sSL https://raw.githubusercontent.com/sighingnow/libclang/master/.github/free-disk-space.sh | bash
cd ${GITHUB_WORKSPACE}/k8s
df -h
make coordinator CI=false VERSION=${SHORT_SHA}
df -h
make analytical CI=false VERSION=${SHORT_SHA}
make analytical-java CI=false VERSION=${SHORT_SHA}
df -h
# make analytical-java CI=false VERSION=${SHORT_SHA}
make interactive-frontend CI=false VERSION=${SHORT_SHA}
df -h
make interactive-executor CI=false VERSION=${SHORT_SHA}
df -h
make learning CI=false VERSION=${SHORT_SHA}
df -h
- name: Release Nightly Image
if: ${{ github.ref == 'refs/heads/main' && github.repository == 'alibaba/GraphScope' }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/k8s-ci.yml
Expand Up @@ -225,7 +225,8 @@ jobs:
build-analytical-java:
runs-on: [self-hosted, manylinux2014]
needs: [changes]
if: ${{ github.repository == 'alibaba/GraphScope' }}
#if: ${{ github.repository == 'alibaba/GraphScope' }}
if: false
steps:
- uses: actions/checkout@v3

Expand Down
2 changes: 2 additions & 0 deletions Makefile
Expand Up @@ -56,6 +56,8 @@ clean:

cd $(INTERACTIVE_DIR) && mvn clean || true
# TODO: use maven clean to clean ir target
rm -rf $(INTERACTIVE_DIR)/executor/assembly/v6d/target
rm -rf $(INTERACTIVE_DIR)/executor/assembly/groot/target
rm -rf $(INTERACTIVE_DIR)/executor/ir/target

rm -rf $(LEARNING_BUILD_DIR) $(LEARNING_DIR)/proto/*.h $(LEARNING_DIR)/proto/*.cc
Expand Down

0 comments on commit 28a3605

Please sign in to comment.