File tree 3 files changed +3
-0
lines changed
3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -245,6 +245,7 @@ pipeline {
245
245
timeout(time: 3, unit: 'HOURS') {
246
246
node(AGENT_LABEL) {
247
247
docker.withRegistry('https://public.ecr.aws/') {
248
+ docker.image(docker_images["$distribution"]).pull() // always pull latest
248
249
docker.image(docker_images["$distribution"]).inside(docker_args["$distribution"]) {
249
250
try {
250
251
stage("${local_component}-ci-group-${ciNum}") {
Original file line number Diff line number Diff line change @@ -215,6 +215,7 @@ pipeline {
215
215
timeout(time: 2, unit: 'HOURS') {
216
216
node(AGENT_LABEL) {
217
217
docker.withRegistry('https://public.ecr.aws/') {
218
+ docker.image(docker_images["$distribution"]).pull() // always pull latest
218
219
docker.image(docker_images["$distribution"]).inside(docker_args["$distribution"]) {
219
220
try {
220
221
stage("${local_component}") {
Original file line number Diff line number Diff line change @@ -233,6 +233,7 @@ pipeline {
233
233
}
234
234
} else {
235
235
node(agent_nodes["${local_platform}_${local_architecture}"]) {
236
+ docker.image(docker_images["$local_distribution"]).pull() // always pull latest
236
237
docker.withRegistry('https://public.ecr.aws/') {
237
238
docker.image(docker_images["$local_distribution"]).inside(docker_args["$local_distribution"]) {
238
239
try {
You can’t perform that action at this time.
0 commit comments