From: Don Zickus dzickus@redhat.com
CI: Call script directly
Originally I thought it would be safer to use a Makefile to control the variables to the ci scripts. Now I realize I lose the ability to pass arguments unless I use environment variables.
Let's call the script directly in preparation for use arguments when expanding to other use cases.
No behaviour changes expected.
Signed-off-by: Don Zickus dzickus@redhat.com
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index blahblah..blahblah 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -157,7 +157,7 @@ eln_64k_debug_merge_request: merge_upstream: extends: .scheduled_setup script: - - make dist-merge-upstream-push || exit 1 + - DIST_PUSH=1 redhat/scripts/ci/ark-update-configs.sh || exit 1 retry: 2 rules: - if: '$CI_PIPELINE_SOURCE == "schedule" && $RAWHIDE_RELEASE == "false"'
-- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/2517