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.
Add ci for standalone compile and ut. (vesoft-inc#550)
<!-- Thanks for your contribution! In order to review PR more efficiently, please add information according to the template. --> #### What type of PR is this? - [x] bug - [ ] feature - [ ] enhancement #### What problem(s) does this PR solve? Issue(s) number: Description: Add workflow to check standalone compile and ut. PYTEST and TCK comes later. #### How do you solve it? #### Special notes for your reviewer, ex. impact of this fix, design document, etc: #### Checklist: Tests: - [ ] Unit test(positive and negative cases) - [ ] Function test - [ ] Performance test - [ ] N/A Affects: - [ ] Documentation affected (Please add the label if documentation needs to be modified.) - [ ] Incompatibility (If it breaks the compatibility, please describe it and add the label.) - [ ] If it's needed to cherry-pick (If cherry-pick to some branches is required, please label the destination version(s).) - [ ] Performance impacted: Consumes more CPU/Memory #### Release notes: Please confirm whether to be reflected in release notes and how to describe: > ex. Fixed the bug ..... Migrated from vesoft-inc#3637 Co-authored-by: Alex Xing <[email protected]>
- Loading branch information
1 parent
01377c9
commit da3f3ac
Showing
15 changed files
with
450 additions
and
28 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 |
---|---|---|
|
@@ -206,3 +206,99 @@ jobs: | |
with: | ||
name: ${{ matrix.os }}-${{ matrix.compiler }}-nebula-test-logs | ||
path: ./build/server_*/logs/ | ||
|
||
standalone: | ||
name: standalone-build | ||
needs: lint | ||
runs-on: [self-hosted, nebula] | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- centos7 | ||
compiler: | ||
- gcc-9.3 | ||
container: | ||
image: reg.vesoft-inc.com/vesoft/nebula-dev:${{ matrix.os }} | ||
credentials: | ||
username: ${{ secrets.HARBOR_USERNAME }} | ||
password: ${{ secrets.HARBOR_PASSWORD }} | ||
env: | ||
CCACHE_DIR: /tmp/ccache/nebula/${{ matrix.os }}-${{ matrix.compiler }} | ||
CCACHE_MAXSIZE: 8G | ||
volumes: | ||
- /tmp/ccache/nebula/${{ matrix.os }}-${{ matrix.compiler }}:/tmp/ccache/nebula/${{ matrix.os }}-${{ matrix.compiler }} | ||
options: --cap-add=SYS_PTRACE | ||
steps: | ||
- uses: webiny/[email protected] | ||
with: | ||
run: sh -c "find . -mindepth 1 -delete" | ||
- uses: actions/checkout@v2 | ||
- name: Prepare environment | ||
id: prepare | ||
run: | | ||
[ -d build/ ] && rm -rf build/* || mkdir -p build | ||
make init -C tests | ||
- name: Decrypt License | ||
run: sh ./.github/workflows/decrypt_secret.sh | ||
env: | ||
SECRET_PASSPHRASE: ${{ secrets.LICENSE_PASSWORD }} | ||
- name: CMake | ||
id: cmake | ||
run: | | ||
case ${{ matrix.compiler }} in | ||
gcc-*) | ||
case ${{ matrix.os }} in | ||
centos7) | ||
# build with Release type | ||
cmake \ | ||
-DCMAKE_CXX_COMPILER=$TOOLSET_GCC_DIR/bin/g++ \ | ||
-DCMAKE_C_COMPILER=$TOOLSET_GCC_DIR/bin/gcc \ | ||
-DCMAKE_BUILD_TYPE=Release \ | ||
-DENABLE_TESTING=on \ | ||
-DENABLE_STANDALONE_VERSION=on \ | ||
-GNinja \ | ||
-B build | ||
echo "::set-output name=j::10" | ||
;; | ||
esac | ||
;; | ||
esac | ||
- name: Make | ||
run: | | ||
ccache -z | ||
ninja -j $(nproc) | ||
ccache -s | ||
working-directory: build/ | ||
- name: CTest | ||
env: | ||
ASAN_OPTIONS: fast_unwind_on_malloc=1 | ||
run: ctest -j $(($(nproc)/2+1)) --timeout 400 --output-on-failure | ||
working-directory: build/ | ||
timeout-minutes: 20 | ||
- name: Setup Cluster | ||
run: | | ||
make standalone-up | ||
working-directory: tests/ | ||
timeout-minutes: 60 | ||
- name: TCK | ||
run: | | ||
make RM_DIR=false DEBUG=false J=${{ steps.cmake.outputs.j }} standalone-tck | ||
working-directory: tests/ | ||
timeout-minutes: 60 | ||
- name: LDBC | ||
run: | | ||
make RM_DIR=false DEBUG=false J=${{ steps.cmake.outputs.j }} ldbc | ||
working-directory: tests/ | ||
timeout-minutes: 60 | ||
- name: Down cluster | ||
run: | | ||
make RM_DIR=false down | ||
working-directory: tests/ | ||
timeout-minutes: 2 | ||
- name: Upload logs | ||
uses: actions/upload-artifact@v2 | ||
if: ${{ failure() }} | ||
with: | ||
name: ${{ matrix.os }}-${{ matrix.compiler }}-nebula-test-logs | ||
path: ./build/server_*/logs/ |
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
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
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
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
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
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
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
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
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
Oops, something went wrong.