Skip to content
Snippets Groups Projects
Commit 0f6da5e3 authored by Rosen Matev's avatar Rosen Matev :sunny:
Browse files

Merge branch 'apearce-file-formatting' into 'master'

Check Python and C++ formatting in the CI

Closes #23

See merge request !188
parents 5dad05b8 28cd188b
No related branches found
No related tags found
1 merge request!188Check Python and C++ formatting in the CI
Pipeline #921492 passed
......@@ -8,11 +8,30 @@
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
variables:
TARGET_BRANCH: master
check-copyright:
image: gitlab-registry.cern.ch/ci-tools/ci-worker:cc7
script:
- curl -o check_copyright.py "https://gitlab.cern.ch/lhcb-core/LbDevTools/raw/master/LbDevTools/CopyrightCheck.py?inline=false"
- python check_copyright.py origin/master
- python check_copyright.py origin/${TARGET_BRANCH}
check-formatting:
image: gitlab-registry.cern.ch/lhcb-docker/style-checker
script:
- if [ ! -e .clang-format ] ; then
- curl -o .clang-format "https://gitlab.cern.ch/lhcb-core/LbDevTools/raw/master/LbDevTools/data/default.clang-format?inline=false"
- echo '.clang-format' >> .gitignore
- git add .gitignore
- fi
- curl -o lb-format "https://gitlab.cern.ch/lhcb-core/LbDevTools/raw/master/LbDevTools/SourceTools.py?inline=false"
- python lb-format --format-patch apply-formatting.patch origin/${TARGET_BRANCH}
artifacts:
paths:
- apply-formatting.patch
when: on_failure
expire_in: 1 week
python-linting:
image: gitlab-registry.cern.ch/ci-tools/ci-worker:cc7
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment