chore_: bring back jenkins commit check (#5777)

This commit is contained in:
Igor Sirotin 2024-08-27 23:40:17 +01:00 committed by GitHub
parent 8491e76a34
commit 85fba77b7d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 12 additions and 0 deletions

View File

@ -99,6 +99,18 @@ pipeline {
} }
}
stage('Commit') {
environment {
BASE_BRANCH = "${env.BASE_BRANCH}"
}
when { // https://github.com/status-im/status-go/issues/4993#issuecomment-2022685544
expression { !isTestNightlyJob() }
}
steps { script {
nix.shell('make commit-check', pure: false)
} }
}
stage('Lint') {
steps { script {
nix.shell('make lint', pure: true)