summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 523e3419ef76c48e8e65c894cf1e5f5566137380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
stages:
  - check

image: maven:3-openjdk-17

verify:
  stage: check
  script:
    - apt-get update
    - apt-get -y --no-install-recommends yarn
    - mvn verify

sast:
  stage: check

cache:
  key: $CI_JOB_NAME
  paths:
    - .m2/repository

variables:
  MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
  MAVEN_CLI_OPTS: "--batch-mode --errors"

include:
  - template: Security/SAST.gitlab-ci.yml