c10a328ec5
These files are not available in CE, resulting in CI pipeline failures when trying to include these files. Since the job is already configured to only run on EE, we can just include it in both CE and EE.
22 lines
453 B
YAML
22 lines
453 B
YAML
.ee-specific-check:
|
|
extends: .default-tags
|
|
dependencies: []
|
|
only:
|
|
- branches@gitlab-org/gitlab-ee
|
|
except:
|
|
- master
|
|
- tags
|
|
- /[\d-]+-stable(-ee)?/
|
|
- /[\d-]+-auto-deploy-\d{7}/
|
|
- /^security-/
|
|
- /\bce\-to\-ee\b/
|
|
|
|
ee-files-location-check:
|
|
extends: .ee-specific-check
|
|
script:
|
|
- scripts/ee-files-location-check
|
|
|
|
ee-specific-lines-check:
|
|
extends: .ee-specific-check
|
|
script:
|
|
- scripts/ee-specific-lines-check
|