From c92dbb41fc3d3c3c77ae33a723ad9f961b8b8215 Mon Sep 17 00:00:00 2001 From: dosas Date: Thu, 9 Jan 2025 14:58:54 +0100 Subject: [PATCH] Remove unmaintained .gitlab-ci.yml config file --- .gitlab-ci.yml | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 24e91dbb06..0000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,34 +0,0 @@ -stages: -- build-initrd -- build-srpm -# - build-rpms - -build_initrd: - only: - - master@leapp/leapp-actors-internal - stage: build-initrd - cache: - key: "${CI_PIPELINE_ID}" - paths: - - sources/dracut/upgrade-boot-files.tgz - script: - - 'export BASEDIR="$PWD"' - - helpers/docker/docker-run.sh - image: docker-registry.engineering.redhat.com/leapp-builds/leapp-initrd-rhel8-build:latest - -build_srpm: - only: - - master@leapp/leapp-actors-internal - stage: build-srpm - dependencies: - - build_initrd - cache: - key: "${CI_PIPELINE_ID}" - paths: - - sources/dracut/upgrade-boot-files.tgz - script: - - dnf install -y git-core make rpm-build copr-cli - - export LEAPP_INITRD_SKIP=1 - - make srpm - image: fedora:28 -