diff options
author | Peter Krempa <pkrempa@redhat.com> | 2023-02-27 10:11:49 +0100 |
---|---|---|
committer | Peter Krempa <pkrempa@redhat.com> | 2023-02-27 10:35:16 +0100 |
commit | bfa32d1d1f3a21cfe0fc2f0fdf39dae1cad3b8e0 (patch) | |
tree | b6c7e649bb6a4860060971c3eb3d73d75d7a9025 | |
parent | 7556f9d810812b0efc12c67e119260e886c40bd1 (diff) | |
download | libvirt-ci-bfa32d1d1f3a21cfe0fc2f0fdf39dae1cad3b8e0.zip libvirt-ci-bfa32d1d1f3a21cfe0fc2f0fdf39dae1cad3b8e0.tar.gz libvirt-ci-bfa32d1d1f3a21cfe0fc2f0fdf39dae1cad3b8e0.tar.bz2 |
ci: Use 'RUN_PIPELINE' instead of 'LIBVIRT_CI' to run pipeline on push
Use the same variable name that the CI jobs generated by lcitool use.
Signed-off-by: Peter Krempa <pkrempa@redhat.com>
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 86cc68b..9855f53 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ # the upstream repo default branch. To force a run when pushing # to a feature branch use # -# git push -o ci.variable=LIBVIRT_CI=1 ... +# git push -o ci.variable=RUN_PIPELINEI=1 ... stages: - containers @@ -17,7 +17,7 @@ stages: when: on_success .job_rules_opt_in: &job_rules_opt_in - if: '$LIBVIRT_CI == "1"' + if: '$RUN_PIPELINE == "1"' when: on_success .job_rules_container_changes: &job_rules_container_changes |