ci: add .gitlab-ci.yml as explicit trigger whenever ci/** is a trigger

pull/1295/head
matejcik 4 years ago
parent 243df6edcb
commit 1f5c08c9a2

@ -158,6 +158,7 @@ crypto build:
needs: []
only:
changes:
- .gitlab-ci.yml
- ci/**/*
- crypto/**/*
script:

@ -4,6 +4,7 @@ style prebuild:
stage: prebuild
only:
changes:
- .gitlab-ci.yml
- ci/**/*
- "**/*.c"
- "**/*.h"
@ -15,6 +16,7 @@ common prebuild:
stage: prebuild
only:
changes:
- .gitlab-ci.yml
- ci/**/*
- "**/*.json"
- "**/*.proto"
@ -25,6 +27,7 @@ gen prebuild:
stage: prebuild
only:
changes:
- .gitlab-ci.yml
- ci/**/*
- "**/*.c"
- "**/*.h"

@ -173,6 +173,7 @@ crypto test:
stage: test
only:
changes:
- .gitlab-ci.yml
- ci/**/*
- crypto/**/*
needs: ["crypto build"]
@ -259,6 +260,7 @@ python test:
changes:
- Pipfile.lock
- poetry.lock
- .gitlab-ci.yml
- ci/**/*
- common/**/*
- python/**/*
@ -272,6 +274,7 @@ storage test:
stage: test
only:
changes:
- .gitlab-ci.yml
- ci/**/*
- storage/**/*
needs: []

Loading…
Cancel
Save