summaryrefslogtreecommitdiff
path: root/ci/gitlab
Commit message (Collapse)AuthorAgeFilesLines
* ci: Drop Fedora 36 targetHEADmasterErik Skultety2023-05-032-33/+0
| | | | Signed-off-by: Erik Skultety <eskultet@redhat.com>
* ci: Add Fedora 38 targetErik Skultety2023-05-032-0/+33
| | | | Signed-off-by: Erik Skultety <eskultet@redhat.com>
* ci: Replace OpenSUSE Leap 15.4 target with Leap 15 nameErik Skultety2023-05-032-7/+7
| | | | | | We now refer to the latest Leap 15.X simply as Leap 15 in lcitool. Signed-off-by: Erik Skultety <eskultet@redhat.com>
* ci: pass --break-system-packages on Debian SidDaniel P. Berrangé2023-04-191-0/+2
| | | | | | | | Debian Sid python packages block users from installing packages using pip unless using a venv. A venv has no benefit when we are running in a throwaway container which has no need for software upgrades. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* ci: mark bleeding edge distros as non-gatingDaniel P. Berrangé2023-04-192-9/+9
| | | | | | | | Fedora Rawhide, Debian Sid and OpenSUSE Tumbleweed are all liable to have sporadic failures due to being bleeding edge distros. Thus they should not gate contributor changes that are otherwise correct. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* ci: regenerated with lcitool manifestDaniel P. Berrangé2023-04-194-10/+24
| | | | | | This replaces OpenSUSE Leap 15.3 with 15.4 Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
* ci: manifest: Define RPM artifacts for regular CentOS Stream 8 buildErik Skultety2023-01-061-0/+8
| | | | | | | | | | | | | | | Commit 7360326 missed the fact that artifacts were only defined for the libvirt Git type of libvirt-python build (git is cloned, libvirt is built and then libvirt-python) based on the 'native_git_build_job_prebuilt_env' job template whereas libvirt CI expects the RPM artifacts to come from a job based on the 'native_build_job' template instead. Note that this patch is a hotfix to something which requires a proper cleanup to stay consistent with the way we're handling the same thing in libvirt-perl. Signed-off-by: Erik Skultety <eskultet@redhat.com>
* ci: manifest: Define artifacts cacheErik Skultety2023-01-051-0/+24
| | | | | | | | | | | | After commit 6e0d4d53 we lost RPM artifacts cache breaking the whole integration CI. The reason for that is that we manually defined the artifacts cache in gitlab.yml instead of manifest.yml. Naturally with the next lcitool update, gitlab.yml got overwritten according to manifest.yml which didn't define any artifacts cache. Fixes: 6e0d4d53d51e8aa9d537e404a886eab131e311cc Signed-off-by: Erik Skultety <eskultet@redhat.com>
* ci: Refresh and add Fedora 37 targetErik Skultety2023-01-045-56/+28
| | | | Signed-off-by: Erik Skultety <eskultet@redhat.com>
* ci: Expose built RPMs as artifactsv8.9.0Peter Krempa2022-10-131-0/+32
| | | | | | | | | | | Expose the artifacts from the centos-stream-8/9 and fedora 35/36 jobs so that the main libvirt integration testing project can consume them. The new libvirt sub-rpm containing a python helper to access QMP directly requires python environment which we didn't yet install in the integration job. Signed-off-by: Peter Krempa <pkrempa@redhat.com>
* ci: refresh with latest lcitool manifestDaniel P. Berrangé2022-09-305-0/+508
This refresh switches the CI for contributors to be triggered by merge requests. Pushing to a branch in a fork will no longer run CI pipelines, in order to avoid consuming CI minutes. To regain the original behaviour contributors can opt-in to a pipeline on push git push <remote> -o ci.variable=RUN_PIPELINE=1 This variable can also be set globally on the repository, though this is not recommended. Upstream repo pushes to branches will run CI. The use of containers has changed in this update, with only the upstream repo creating containers, in order to avoid consuming contributors' limited storage quotas. A fork with existing container images may delete them. Containers will be rebuilt upstream when pushing commits with CI changes to the default branch. Any other scenario with CI changes will simply install build pre-requisite packages in a throaway environment, using the ci/buildenv/ scripts. These scripts may also be used on a contributor's local machines. With pipelines triggered by merge requests, it is also now possible to workaround the inability of contributors to run pipelines if they have run out of CI quota. A project member can trigger a pipeline from the merge request, which will run in context of upstream, however, note this should only be done after reviewing the code for any malicious CI changes. Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>