forked from vesoft-inc/nebula
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change ccache to sccache (vesoft-inc#2865)
* Update pull_request.yml * add sccache for speed up build and stoarge cache file into Minio service * Update pull_request.yml fix indentation
- Loading branch information
1 parent
800aae0
commit 0285f1f
Showing
1 changed file
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,10 +70,12 @@ jobs: | |
username: ${{ secrets.HARBOR_USERNAME }} | ||
password: ${{ secrets.HARBOR_PASSWORD }} | ||
env: | ||
CCACHE_DIR: /tmp/ccache/nebula_ent/${{ matrix.os }}-${{ matrix.compiler }} | ||
CCACHE_MAXSIZE: 8G | ||
volumes: | ||
- /tmp/ccache/nebula_ent/${{ matrix.os }}-${{ matrix.compiler }}:/tmp/ccache/nebula_ent/${{ matrix.os }}-${{ matrix.compiler }} | ||
# SCCACHE_CACHE_SIZE: "10G" | ||
SCCACHE_ENDPOINT: "https://mimio.vesoft-inc.com:9000" | ||
SCCACHE_BUCKET: "ci-sccache" | ||
SCCACHE_S3_KEY_PREFIX: ${{ github.repository }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.MINIO_KEY }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.MINIO_SECRET }} | ||
options: --cap-add=SYS_PTRACE --init | ||
services: | ||
elasticsearch: | ||
|
@@ -92,6 +94,8 @@ jobs: | |
- uses: webiny/[email protected] | ||
with: | ||
run: sh -c "find . -mindepth 1 -delete" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- uses: actions/checkout@v3 | ||
- name: Prepare environment | ||
id: prepare | ||
|
@@ -107,6 +111,7 @@ jobs: | |
centos7) | ||
# build with Release type | ||
cmake \ | ||
-DCOMPILER_LAUNCHER_OPTION=sccache \ | ||
-DCMAKE_CXX_COMPILER=$TOOLSET_GCC_DIR/bin/g++ \ | ||
-DCMAKE_C_COMPILER=$TOOLSET_GCC_DIR/bin/gcc \ | ||
-DNEBULA_USE_LINKER=mold \ | ||
|
@@ -118,6 +123,7 @@ jobs: | |
ubuntu2004) | ||
# build with Debug type | ||
cmake \ | ||
-DCOMPILER_LAUNCHER_OPTION=sccache \ | ||
-DCMAKE_CXX_COMPILER=$TOOLSET_GCC_DIR/bin/g++ \ | ||
-DCMAKE_C_COMPILER=$TOOLSET_GCC_DIR/bin/gcc \ | ||
-DNEBULA_USE_LINKER=mold \ | ||
|
@@ -132,6 +138,7 @@ jobs: | |
clang-*) | ||
# build with Sanitizer | ||
cmake \ | ||
-DCOMPILER_LAUNCHER_OPTION=sccache \ | ||
-DCMAKE_CXX_COMPILER=$TOOLSET_CLANG_DIR/bin/clang++ \ | ||
-DCMAKE_C_COMPILER=$TOOLSET_CLANG_DIR/bin/clang \ | ||
-DNEBULA_USE_LINKER=mold \ | ||
|
@@ -150,23 +157,17 @@ jobs: | |
case ${{ matrix.os }} in | ||
centos7) | ||
# build with Release type | ||
ccache -z | ||
ninja -j $(nproc) | ||
ccache -s | ||
;; | ||
ubuntu2004) | ||
# build with Debug type | ||
ccache -z | ||
ninja -j $(nproc) | ||
ccache -s | ||
;; | ||
esac | ||
;; | ||
clang-*) | ||
# build with Sanitizer | ||
ccache -z | ||
ninja -j $(nproc) | ||
ccache -s | ||
;; | ||
esac | ||
working-directory: build/ | ||
|