jenkinsfile: revert check for changed files (#622)
Signed-off-by: markoburcul <marko@status.im>
This commit is contained in:
parent
7f611bd199
commit
51d61895a4
|
@ -30,26 +30,15 @@ pipeline {
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
stage('Check Changed Files') {
|
stage('Check Changed Files') {
|
||||||
|
when {
|
||||||
|
changeset pattern: "apps/connector/**", comparator: "GLOB"
|
||||||
|
}
|
||||||
steps {
|
steps {
|
||||||
script {
|
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
|
changesDetected = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
stage('Install') {
|
stage('Install') {
|
||||||
when {
|
when {
|
||||||
|
|
Loading…
Reference in New Issue