Skip to content
Snippets Groups Projects
Commit 17b3ecd5 authored by Nikolay Shirokovskiy's avatar Nikolay Shirokovskiy Committed by Vladimir Davydov
Browse files

ci: run asan workflow on 'asan-ci' label

It is convenient to have a label to run ASAN CI without running full CI.

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci

(cherry picked from commit c0025ffb)
parent 29211065
No related branches found
No related tags found
No related merge requests found
......@@ -33,10 +33,11 @@ concurrency:
jobs:
release_asan_clang:
# Run on push to the 'master' and release branches of tarantool/tarantool
# or on pull request if the 'full-ci' label is set.
# or on pull request if the 'full-ci' or 'asan-ci' label is set.
if: github.repository == 'tarantool/tarantool' &&
( github.event_name != 'pull_request' ||
contains(github.event.pull_request.labels.*.name, 'full-ci') )
contains(github.event.pull_request.labels.*.name, 'full-ci') ||
contains(github.event.pull_request.labels.*.name, 'asan-ci') )
runs-on: ubuntu-20.04-self-hosted
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment