ci-cd: Don't execute per-commit jobs with a binding generation schedule

This commit is contained in:
Natale Patriciello
2020-08-28 10:42:23 +02:00
parent c261cb01cc
commit 804d16d1b7

View File

@@ -49,6 +49,9 @@ stages:
# Defines the per-commit jobs. They are executed for any branch
per-commit-compile-debug:
extends: .base-build
except:
variables:
- $PYBINDGEN == "True"
image: archlinux/base
variables:
COMPILER: g++
@@ -59,6 +62,9 @@ per-commit-compile-debug:
per-commit-compile-release:
extends: .base-build
except:
variables:
- $PYBINDGEN == "True"
image: archlinux/base
variables:
COMPILER: g++
@@ -69,6 +75,9 @@ per-commit-compile-release:
per-commit-compile-optimized:
extends: .base-build
except:
variables:
- $PYBINDGEN == "True"
image: archlinux/base
variables:
COMPILER: g++