Skip to content

Commit

Permalink
Change compile platform to oel9 for el9 platforms as llvm 15 is not s…
Browse files Browse the repository at this point in the history
…upported in rocky9

Authored-by: Anusha Shakarad <shakarada@vmware.com>
  • Loading branch information
Shakarada committed Jan 15, 2024
1 parent e781fe0 commit dac3bd5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 3 additions & 3 deletions concourse/pipelines/gen_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,9 +115,9 @@ def create_pipeline(args, git_remote, git_branch):
"rhel8" : "rocky8",
"rocky8": "rocky8",
"oel8" : "rocky8",
"rhel9" : "rocky9",
"rocky9": "rocky9",
"oel9" : "rocky9"
"rhel9" : "rhel9",
"rocky9": "rhel9",
"oel9" : "rhel9"
}
dist = {
"rhel8" : "el8",
Expand Down
6 changes: 6 additions & 0 deletions concourse/pipelines/templates/gpdb-tpl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,13 @@ resources:
type: registry-image
source:
tag: latest
{% if compile_platform == "rhel9" %}
repository: gcr.io/data-gpdb-private-images/gpdb7-[[ compile_platform ]]-build
username: _json_key
password: ((data-gpdb-private-images-container-registry-readonly-service-account-key))
{% else %}
repository: gcr.io/data-gpdb-public-images/gpdb7-[[ compile_platform ]]-build
{% endif %}
{% endif %}

- name: gpdb7-[[ os_type ]]-test
Expand Down
1 change: 1 addition & 0 deletions gpAux/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ rhel7_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_
rhel8_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
rocky8_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
rocky9_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
rhel9_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
ol8_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
ubuntu18.04_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
sles12_x86_64_CONFIGFLAGS=--with-gssapi --enable-orafce --enable-ic-proxy ${ORCA_CONFIG} --enable-gpcloud --with-libxml --with-openssl --with-pam --with-ldap --with-uuid=e2fs --with-llvm
Expand Down

0 comments on commit dac3bd5

Please sign in to comment.