Skip to content

Commit

Permalink
fix(ci): allowing bors try when submodule PR is not merged yet
Browse files Browse the repository at this point in the history
Signed-off-by: Dmitry Savitskiy <[email protected]>
  • Loading branch information
dsavitskiy committed Aug 1, 2023
1 parent c7606a0 commit da78532
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ pipeline {
sh 'nix-shell --run "./scripts/rust-style.sh" ci.nix'
sh 'nix-shell --run "./scripts/rust-linter.sh" ci.nix'
sh 'nix-shell --run "./scripts/js-check.sh" ci.nix'
sh 'nix-shell --run "./scripts/check-submodule-branches.sh" ci.nix'
script {
if (env.BRANCH_NAME != "trying") {
sh 'nix-shell --run "./scripts/check-submodule-branches.sh" ci.nix'
}
}
}
}
stage('test') {
Expand Down

0 comments on commit da78532

Please sign in to comment.