Skip to content
Snippets Groups Projects
Commit 14a7ecca authored by Vladimir Davydov's avatar Vladimir Davydov
Browse files

ci: run static-build workflows on 'static-build-ci' label

Sometimes, we only need to test static-build, e.g. when we apply a patch
to a third party sub-project. Let's introduce a new label to run the ci
checks faster in this case.

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci

(cherry picked from commit 09a77cd7)
parent a54cbfca
No related branches found
No related tags found
No related merge requests found
......@@ -34,10 +34,11 @@ concurrency:
jobs:
osx_12_static_cmake:
# 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 'static-build-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, 'static-build-ci') )
runs-on: [ macos-12-self-hosted, x86_64 ]
......
......@@ -34,10 +34,11 @@ concurrency:
jobs:
static_build:
# 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 'static-build-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, 'static-build-ci') )
runs-on: ubuntu-20.04-self-hosted
......
......@@ -34,10 +34,11 @@ concurrency:
jobs:
static_build_cmake_linux:
# 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 'static-build-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, 'static-build-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