Skip to content

Commit 86e0e44

Browse files
committed
Increased timeouts
1 parent 39bf819 commit 86e0e44

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

devops.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ resource "oci_devops_build_pipeline_stage" "repo_build_pipeline_stage" {
138138
image = var.devops_pipeline_image
139139
is_pass_all_parameters_enabled = false
140140
primary_build_source = oci_devops_repository.config_repo[0].name
141-
stage_execution_timeout_in_seconds = 300
141+
stage_execution_timeout_in_seconds = 600
142142
count = local.use-repository ? 1 : 0
143143
}
144144

@@ -173,7 +173,7 @@ resource "oci_devops_build_pipeline_stage" "art_build_pipeline_stage" {
173173
image = var.devops_pipeline_image
174174
is_pass_all_parameters_enabled = false
175175
primary_build_source = oci_devops_repository.config_repo[0].name
176-
stage_execution_timeout_in_seconds = 300
176+
stage_execution_timeout_in_seconds = 600
177177
count = local.use-artifact ? 1 : 0
178178
}
179179

java/build-artifact.yaml.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ steps:
3636
sh add-credential-wallet.sh
3737
- type: Command
3838
name: Build Docker image
39-
timeoutInSeconds: 600
39+
timeoutInSeconds: 900
4040
failImmediatelyOnError: true
4141
command: |
4242
docker build . --file Dockerfile --tag ${image_remote_tag}:${image_tag}-$${artifact_version} --tag ${image_latest_tag}

java/build-repo.yaml.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ steps:
7676
cp $${OCI_WORKSPACE_DIR}/${repo_name}/${artifact_location} ./${fileName}
7777
- type: Command
7878
name: Build Docker image
79-
timeoutInSeconds: 600
79+
timeoutInSeconds: 900
8080
failImmediatelyOnError: true
8181
command: |
8282
cd $${OCI_WORKSPACE_DIR}/${repo_name}

0 commit comments

Comments
 (0)