Skip to content

Commit

Permalink
Increased timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
fmeheust committed Feb 11, 2025
1 parent 39bf819 commit 86e0e44
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions devops.tf
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ resource "oci_devops_build_pipeline_stage" "repo_build_pipeline_stage" {
image = var.devops_pipeline_image
is_pass_all_parameters_enabled = false
primary_build_source = oci_devops_repository.config_repo[0].name
stage_execution_timeout_in_seconds = 300
stage_execution_timeout_in_seconds = 600
count = local.use-repository ? 1 : 0
}

Expand Down Expand Up @@ -173,7 +173,7 @@ resource "oci_devops_build_pipeline_stage" "art_build_pipeline_stage" {
image = var.devops_pipeline_image
is_pass_all_parameters_enabled = false
primary_build_source = oci_devops_repository.config_repo[0].name
stage_execution_timeout_in_seconds = 300
stage_execution_timeout_in_seconds = 600
count = local.use-artifact ? 1 : 0
}

Expand Down
2 changes: 1 addition & 1 deletion java/build-artifact.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ steps:
sh add-credential-wallet.sh
- type: Command
name: Build Docker image
timeoutInSeconds: 600
timeoutInSeconds: 900
failImmediatelyOnError: true
command: |
docker build . --file Dockerfile --tag ${image_remote_tag}:${image_tag}-$${artifact_version} --tag ${image_latest_tag}
Expand Down
2 changes: 1 addition & 1 deletion java/build-repo.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ steps:
cp $${OCI_WORKSPACE_DIR}/${repo_name}/${artifact_location} ./${fileName}
- type: Command
name: Build Docker image
timeoutInSeconds: 600
timeoutInSeconds: 900
failImmediatelyOnError: true
command: |
cd $${OCI_WORKSPACE_DIR}/${repo_name}
Expand Down

0 comments on commit 86e0e44

Please sign in to comment.