ci: build all when anything in ci folder changed

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-27 16:19:28 +02:00
parent c3a9c0aab8
commit 207dc3a845
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ def versionWasChanged(version) {
script: "git diff --name-only origin/${env.CHANGE_TARGET}",
returnStdout: true
)
if (changes =~ "(?m)^(Makefile|waku.nimble|config.nims|vendor).*") {
if (changes =~ "(?m)^(Makefile|waku.nimble|config.nims|vendor|ci).*") {
return true
}
if (changes =~ "(?m)^(waku|tests|examples)/(${version}|common)/.*") {

View File

@ -76,7 +76,7 @@ pipeline {
description: """
Nim-Waku deployment successful!
Image: [`${IMAGE_NAME}:${IMAGE_TAG}`](https://hub.docker.com/r/${IMAGE_NAME}/tags?page=1&name=${IMAGE_TAG})
Branch: [`${GIT_LOCAL_BRANCH}`](https://github.com/status-im/nwaku/commits/${GIT_LOCAL_BRANCH})
Branch: [`${GIT_BRANCH.minus("origin/")}`](https://github.com/status-im/nwaku/commits/${GIT_BRANCH.minus("origin/")})
Commit: [`${GIT_COMMIT.take(8)}`](https://github.com/status-im/nwaku/commit/${GIT_COMMIT.take(8)})
""",
link: env.BUILD_URL,