Skip to content
Snippets Groups Projects

Resolve "Refactor CTA code so that it can be build without Oracle dependencies"

All threads resolved!
Files
13
@@ -50,7 +50,7 @@ cta_srpm_xrootd4:
- .cta_srpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "objectstore"
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "ON"
cta_rpm_xrootd4:
stage: build:rpm
@@ -58,7 +58,7 @@ cta_rpm_xrootd4:
- .cta_rpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "objectstore"
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "ON"
- if: $CI_COMMIT_TAG
when: never
@@ -68,7 +68,7 @@ cta_srpm_xrootd4_pgsched:
- .cta_srpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "pgsched"
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "pgsched" && $ORACLE_SUPPORT == "OFF"
cta_rpm_xrootd4_pgsched:
stage: build:rpm
@@ -76,7 +76,7 @@ cta_rpm_xrootd4_pgsched:
- .cta_rpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "pgsched"
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "pgsched" && $ORACLE_SUPPORT == "OFF"
- if: $CI_COMMIT_TAG
when: never
@@ -86,7 +86,7 @@ cta_srpm_xrootd5:
- .cta_srpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "5" && $SCHED_TYPE == "objectstore"
- if: $XROOTD_VERSION == "5" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "ON"
cta_rpm_xrootd5:
stage: build:rpm
@@ -94,7 +94,42 @@ cta_rpm_xrootd5:
- .cta_rpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "5" && $SCHED_TYPE == "objectstore"
- if: $XROOTD_VERSION == "5" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "ON"
- if: $CI_COMMIT_TAG
when: never
cta_srpm_xrootd5:
stage: build:srpm
extends:
- .cta_srpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "5" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "ON"
cta_rpm_xrootd5:
stage: build:rpm
extends:
- .cta_rpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "5" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "ON"
- if: $CI_COMMIT_TAG
when: never
cta_srpm_no_oracle:
stage: build:srpm
extends:
- .cta_srpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "OFF"
cta_rpm_no_oracle:
stage: build:rpm
extends:
- .cta_rpm
rules:
- !reference [.cta_build, rules]
- if: $XROOTD_VERSION == "4" && $SCHED_TYPE == "objectstore" && $ORACLE_SUPPORT == "OFF"
- if: $CI_COMMIT_TAG
when: never
\ No newline at end of file
Loading