jenkinsfile: revert check for changed files

Signed-off-by: markoburcul <marko@status.im>
This commit is contained in:
markoburcul 2024-10-17 11:15:31 +02:00
parent 1b05730c3d
commit 6404ea799f
No known key found for this signature in database
GPG Key ID: FC4CD2F9A040D54A
1 changed files with 7 additions and 18 deletions

View File

@ -30,26 +30,15 @@ pipeline {
stages {
stage('Check Changed Files') {
when {
changeset pattern: "apps/connector/**", comparator: "GLOB"
}
steps {
script {
// Get the list of changed files
def changedFiles = sh(
script: "git diff --name-only origin/main...HEAD",
returnStdout: true
).trim()
// Check if the changes are relevant
def isRelevant = changedFiles.split('\n').any { file ->
file.startsWith('apps/connector/')
}
// If no relevant changes, skip the build
if (isRelevant) {
changesDetected = true
}
}
}
}
stage('Install') {
when {