Skip to content
Snippets Groups Projects

NXCALS-7429 Extract accpy publish to templates

Merged Rafal Mucha requested to merge NXCALS-7429-extract-accpy-to-templates into develop
Files
9
+ 0
37
include:
- project: acc-logging-team/gitlab-templates
file: gitlab-ci-gradle.yml
ref: cd08931bd66170aabda5335266cabc11d3241f2f
build_project:
stage: build
extends:
- .gradle_build
after_script:
- find . | grep -i venv$ | xargs rm -r # remove all venvs
- rm -r python/type-stubs/build/*ClasspathJars
variables:
BUILD_ADDITIONAL_OPTS: "--stacktrace -x distZip --parallel"
unit_tests:
stage: test
extends:
- .gradle_unit_tests
needs:
- job: build_project
artifacts: true
variables:
ACTIVE_PROFILE: "gitlab-ci"
GITLAB_MR_USER_NAME: "$GITLAB_USER_LOGIN"
TEST_ADDITIONAL_OPTS: "-p $MODULE_NAME --parallel"
parallel:
matrix:
- MODULE_NAME: [ "backport-api", "cern-extraction-api", "common", "compaction", "db", "docs", "extraction-api", "extraction-api-thin", "extraction-starter", "ingestion-api", "kafka-etl", "metadata-api", "monitoring-grok", "monitoring-producer", "monitoring-reader", "python", "service", "service-db", "spark-server" ]
sonar:
stage: qa
extends:
- .gradle_sonar
needs:
- job: unit_tests
artifacts: true
\ No newline at end of file
Loading