Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
gitlab-ci-templates
Commits
3b13c6643e83
Commit
3b13c664
authored
Jul 24, 2021
by
Laurent Peuch
Browse files
feat: make more jobs interruptible for performance improvement
parent
4e1ec27df1da
Changes
8
Hide whitespace changes
Inline
Side-by-side
templates/lint/black.yml
View file @
3b13c664
---
black
:
interruptible
:
true
before_script
:
-
pip install tox
stage
:
lint
...
...
templates/lint/check-manifest.yml
View file @
3b13c664
---
check-manifest
:
interruptible
:
true
before_script
:
-
pip install tox
stage
:
lint
...
...
templates/lint/flake8.yml
View file @
3b13c664
---
flake8
:
interruptible
:
true
before_script
:
-
pip install tox flake8-gl-codeclimate
stage
:
lint
...
...
templates/lint/mypy.yml
View file @
3b13c664
---
mypy
:
interruptible
:
true
before_script
:
-
pip install tox
stage
:
lint
...
...
templates/lint/safety.yml
View file @
3b13c664
---
safety
:
interruptible
:
true
stage
:
lint
before_script
:
-
pip install tox
...
...
templates/lint/yamllint.yml
View file @
3b13c664
---
yamllint
:
interruptible
:
true
before_script
:
-
pip install tox
stage
:
lint
...
...
templates/tests/py27.yml
View file @
3b13c664
---
py27
:
interruptible
:
true
before_script
:
-
pip install tox
stage
:
tests
...
...
templates/tests/py3.yml
View file @
3b13c664
---
py3
:
interruptible
:
true
before_script
:
-
pip install tox
stage
:
tests
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment