chore_: bring back jenkins commit check (#5777)
This commit is contained in:
parent
8491e76a34
commit
85fba77b7d
_assets/ci
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue