🐎 ci(test stage): disable artifacts, enable asan

This commit is contained in:
yangwei
2024-09-02 15:19:50 +08:00
parent 94a75460e9
commit e2f2823b91

View File

@@ -85,10 +85,6 @@ branch_build_release_for_rockylinux:
variables:
BUILD_TYPE: RelWithDebInfo
extends: .build_by_travis_for_rockylinux
artifacts:
name: "stellar-branch-$CI_COMMIT_REF_NAME-release"
paths:
- build/*
except:
- /^develop-.*$/i
- /^release-.*$/i
@@ -112,10 +108,6 @@ develop_build_release_for_rockylinux:
TESTING_VERSION_BUILD: 1
BUILD_TYPE: RelWithDebInfo
#ASAN_OPTION: ADDRESS
artifacts:
name: "stellar-develop-$CI_COMMIT_REF_NAME-release"
paths:
- build/*
only:
- /^develop-.*$/i
- /^release-.*$/i
@@ -136,7 +128,7 @@ release_build_release_for_rockylinux:
artifacts:
name: "stellar-install-$CI_COMMIT_REF_NAME-release"
paths:
- build/*
- build/infra/*.rpm
only:
- tags
@@ -146,9 +138,13 @@ release_build_release_for_rockylinux:
test_in_rockylinux:
stage: test
image: $BUILD_IMAGE_ROCKYLINUX
extends: .build_by_travis_for_rockylinux
variables:
BUILD_TYPE: Debug
ASAN_OPTION: ADDRESS
allow_failure: false
script:
- *everything_before_script
- ./ci/travis.sh
- cd build; ctest -V
dependencies:
- branch_build_release_for_rockylinux