@@ -18,6 +18,7 @@ void main() {
1818
1919 def single_tests = load(" ${ checkout_dir} /buildscripts/scripts/utils/single_tests.groovy" );
2020 def versioning = load(" ${ checkout_dir} /buildscripts/scripts/utils/versioning.groovy" );
21+ def package_helper = load(" ${ checkout_dir} /buildscripts/scripts/utils/package_helper.groovy" );
2122
2223 def safe_branch_name = versioning. safe_branch_name();
2324 def branch_version = versioning. get_branch_version(checkout_dir);
@@ -61,6 +62,22 @@ void main() {
6162 |===================================================
6263 """ . stripMargin());
6364
65+ def all_stages = package_helper. provide_agent_binaries(
66+ version : version,
67+ cmk_version : cmk_version,
68+ edition : edition,
69+ disable_cache : false ,
70+ bisect_comment : params. CIPARAM_BISECT_COMMENT ,
71+ artifacts_base_dir : " tmp_artifacts" ,
72+ fake_artifacts : false ,
73+ );
74+
75+ inside_container_minimal(safe_branch_name : safe_branch_name) {
76+ all_stages[" build-mk-oracle-rhel8" ]();
77+ }
78+
79+ def mk_oracle_binary_path = " ${ checkout_dir} /omd/packages/mk-oracle/mk-oracle.rhel8"
80+
6481 // this is a quick fix for FIPS based tests, see CMK-20851
6582 def build_node = params. CIPARAM_OVERRIDE_BUILD_NODE ;
6683 if (build_node == " fips" ) {
@@ -90,6 +107,7 @@ void main() {
90107 branch_name : setup_values. safe_branch_name,
91108 make_target : make_target,
92109 test_filter : params. TEST_FILTER ,
110+ mk_oracle_binary_path : " --mk-oracle-binary-path=${ mk_oracle_binary_path} " ,
93111 // can hit 5min during the heavy chain runs (without wait time)
94112 // using FoS of 3
95113 timeout : 15 ,
0 commit comments