fix: prevent migration check on nightly tests

mitigates: #4993
This commit is contained in:
Patryk Osmaczko 2024-03-27 14:17:37 +01:00 committed by osmaczko
parent caf3de1190
commit c98acf76f9
1 changed files with 3 additions and 0 deletions

View File

@ -74,6 +74,9 @@ pipeline {
}
stage('Migration') {
when { // https://github.com/status-im/status-go/issues/4993#issuecomment-2022685544
expression { !isTestNightlyJob() }
}
steps { script {
nix.shell('make migration-check', pure: false)
} }