Skip to content
Snippets Groups Projects
.gitlab-ci.yml 958 B
Newer Older
# Includes a common template
include:
 - project: 'spc/tcv/tbx/git-tools-spc'
   file: 'gitlab-ci-tbx-template.yml'

# no build for gdat, so don't define jobs for this phase

.deploy: # do later
  extends: .deploy-to-lac-template

test-matlab850-basic:
  extends: .test-template
  before_script:
  - cd matlab
  variables:
    MATLABCMD: matlab850
Federico Felici's avatar
Federico Felici committed
    TESTCASE: basic
test-matlab920-basic:
  extends: .test-template
  before_script:
  - cd matlab
  variables:
    MATLABCMD: matlab920
test-matlab920-all:
  extends: test-matlab850-basic
  variables:
    TESTCASE: all
  only: 
  - schedules
  - web
  - master

test-matlab850-all:
  extends: test-matlab920-basic
  variables:
    TESTCASE: all
  only: 
  - schedules
  - web
  - master

.test-matlab850-deployed:
  extends: .test-template-deployed
  variables:
    MATLABCMD: matlab850

.test-matlab920-deployed:
  extends: .test-template-deployed
  variables:
    MATLABCMD: matlab920