Re: [PATCH 3/3] gitlab: honour QEMU_CI variable in edk2/opensbi jobs

2022-07-01 Thread Daniel P . Berrangé
On Fri, Jul 01, 2022 at 07:13:44AM +0530, Richard Henderson wrote: > On 6/29/22 22:36, Daniel P. Berrangé wrote: > > +# In forks, if QEMU_CI=1 is set, then create manual job > > +# if the branch/tag starts with 'edk2' > > +- if: '$QEMU_CI == "1" && $CI_PROJECT_NAMESPACE !=

Re: [PATCH 3/3] gitlab: honour QEMU_CI variable in edk2/opensbi jobs

2022-06-30 Thread Richard Henderson
On 6/29/22 22:36, Daniel P. Berrangé wrote: +# In forks, if QEMU_CI=1 is set, then create manual job +# if the branch/tag starts with 'edk2' +- if: '$QEMU_CI == "1" && $CI_PROJECT_NAMESPACE != "qemu-project" && $CI_COMMIT_REF_NAME =~ /^edk2/' + when: manual + +# In forks,

[PATCH 3/3] gitlab: honour QEMU_CI variable in edk2/opensbi jobs

2022-06-29 Thread Daniel P . Berrangé
To preserve contributor CI credits we don't want jobs to run by default unless the QEMU_CI variable is set. For most jobs we can achieve this using the base template, but the edk2/opensbi jobs are a little special as they have some complex conditions we can't easily model in the base template. We