# # GitLab CI Job Configuration # # Goal: Run all jobs defined here on all available runners (GNU/Linux and # Windows). # # ## Job Description Syntax # # : # Job name which is displayed in web interface. # stage: # Run "script" commands in this stage. The # # stages are exececuted sequentially. # script: # - # Here you can execute arbitratry terminal # # commands. If any of the commands return a # # non-zero exit code, the job fails. # # Procedure: Use GitLab job templates in ".gitlab/ci/templates/" and use them # in the job description by using the "extend" keyword. # # ## References # # - https://docs.gitlab.com/ee/ci/yaml/README.html # Variable Definitions variables: VADERE_DEPLOYMENT_BASE_URL: "http://www.vadere.org/builds" VADERE_PACKAGE_NAME: "vadere.${CI_COMMIT_REF_NAME}.${CI_ENVIRONMENT_NAME}" # Stage Definitions stages: - deploy include: .gitlab/ci/templates/deploy_stage_templates.yml # include: .gitlab/ci/templates/test_stage_templates.yml # Job Definitions include: .gitlab/ci/jobs/windows_jobs.yml