Skip to content
Snippets Groups Projects

Transition from only/except to rules

Merged Christos Arvanitis requested to merge carvanit/rpmci:feat/rules into rules
5 files
+ 73
107
Compare changes
  • Side-by-side
  • Inline
Files
5
+ 17
24
@@ -12,9 +12,8 @@ build_srpm6:
IMAGE: $IMAGE_6
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $BUILD_6 == 'True'
rules:
- if: '$BUILD_6 == "True"'
build_rpm6:
extends:
@@ -24,17 +23,16 @@ build_rpm6:
IMAGE: $IMAGE_6
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $BUILD_6 == 'True'
rules:
- if: '$BUILD_6 == "True"'
test_rpmlint6:
extends: .test_rpmlint
variables:
IMAGE: $IMAGE_6
only:
variables:
- $BUILD_8s != 'True' && $BUILD_8 != 'True' && $BUILD_7 != 'True' && $BUILD_6 == 'True'
rules:
- if: '$BUILD_8s != "True" && $BUILD_8 != "True" && $BUILD_7 != "True" && $BUILD_6 == "True"'
test_install6:
extends: .test_install
@@ -44,9 +42,8 @@ test_install6:
IMAGE: $IMAGE_6
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $SKIP_KOJI_DOWNLOAD == 'False' && $BUILD_6 == 'True'
rules:
- if: '$SKIP_KOJI_DOWNLOAD == "False" && $BUILD_6 == "True"'
koji_scratch6:
extends: .koji_scratch
@@ -55,9 +52,8 @@ koji_scratch6:
variables:
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $BUILD_6 == 'True'
rules:
- if: '$BUILD_6 == "True"'
koji_build6:
extends: .koji_build
@@ -66,9 +62,8 @@ koji_build6:
variables:
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $BUILD_6 == 'True'
rules:
- if: '$BUILD_6 == "True"'
koji_tag_qa6:
extends: .tag_qa
@@ -80,9 +75,8 @@ koji_tag_qa6:
variables:
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $BUILD_6 == 'True'
rules:
- if: '$BUILD_6 == "True"'
koji_tag_stable6:
extends: .tag_stable
@@ -95,6 +89,5 @@ koji_tag_stable6:
variables:
DIST: $DIST_6
_KOJI_OS: 6
only:
variables:
- $BUILD_6 == 'True'
rules:
- if: '$BUILD_6 == "True"'
Loading