.gitlab-ci.yml 788 Bytes
Newer Older
# stages of the cicd pipeline
stages:
  - dependencies
  - unit_test
  - integ_test
  - deploy
  - funct_test

# include the individual .gitlab-ci.yml of each micro-service
Javi Moreno's avatar
Javi Moreno committed
include:
  - local: '/manifests/.gitlab-ci.yml'
Javi Moreno's avatar
Javi Moreno committed
  - local: '/src/monitoring/.gitlab-ci.yml'
  - local: '/src/centralizedattackdetector/.gitlab-ci.yml'
  - local: '/src/context/.gitlab-ci.yml'
  - local: '/src/device/.gitlab-ci.yml'
  - local: '/src/service/.gitlab-ci.yml'
  - local: '/src/tester_integration/.gitlab-ci.yml'
  - local: '/src/tester_functional/.gitlab-ci.yml'
  - local: '/src/automation/.gitlab-ci.yml'
Javi Moreno's avatar
Javi Moreno committed
  - local: '/src/l3_distributedattackdetector/.gitlab-ci.yml'
  - local: '/src/l3_centralizedattackdetector/.gitlab-ci.yml'
  - local: '/src/l3_attackmitigator/.gitlab-ci.yml'