Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion constants.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
variable "devops_pipeline_image" {
type = string
default = "OL7_X86_64_STANDARD_10"
default = "OL8_X86_64_STANDARD_10"
}

variable "devops_deploy_shape" {
Expand Down
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 = 3000
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 = 3000
count = local.use-artifact ? 1 : 0
}

Expand Down
4 changes: 2 additions & 2 deletions java/build-repo.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ steps:
timeoutInSeconds: 600
failImmediatelyOnError: true
command: |
yum --enablerepo=ol7_oci_included clean metadata
yum install -y jdk-17
dnf install -y jdk-24-headful --enablerepo=ol8_oci_included
export PATH=$JAVA_HOME/bin:$PATH
onFailure:
- type: Command
command: |
Expand Down