diff options
author | dcherednik <dcherednik@ydb.tech> | 2023-05-18 15:18:01 +0300 |
---|---|---|
committer | dcherednik <dcherednik@ydb.tech> | 2023-05-18 15:18:01 +0300 |
commit | 0a48ad527344bcfac46ddddd263aba22ae420619 (patch) | |
tree | c62004009874e1ed43550b75c07803f0503a63e5 /.github/workflows | |
parent | 192fdc7febfd16dae2046773597474445410ae54 (diff) | |
download | ydb-0a48ad527344bcfac46ddddd263aba22ae420619.tar.gz |
Add thread sanitized in to github build.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/nightly_run.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/nightly_run.yaml b/.github/workflows/nightly_run.yaml index 48bdf750d1..716305a062 100644 --- a/.github/workflows/nightly_run.yaml +++ b/.github/workflows/nightly_run.yaml @@ -13,7 +13,7 @@ jobs: name: Build/test X64 strategy: matrix: - sanitizer: [ "", "address" ] + sanitizer: [ "", "address", "thread" ] fail-fast: false uses: ./.github/workflows/build_and_test_ondemand.yml @@ -26,7 +26,7 @@ jobs: name: Build/test ARM64 strategy: matrix: - sanitizer: [ "", "address" ] + sanitizer: [ "", "address", "thread" ] fail-fast: false uses: ./.github/workflows/build_and_test_provisioned.yml with: |