-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitlab-ci.yml
58 lines (54 loc) · 1.53 KB
/
.gitlab-ci.yml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
default:
tags:
- linux
stages:
- formatter
- cli
- test
- engine
- neos
- docs
- performance
- website
- upload
variables:
MACHINES_CONTAINER_REG:
value: registry.gams.com/devel/machines
description: "URL to the container registry of the machines repository"
PF_GITLAB_WEBSITE_TOKEN:
value: $GITLAB_WEBSITE_TOKEN
description: "Token for updating gams.com"
PF_CUSTOM_BRANCH:
value: $CUSTOM_BRANCH
description: "Name of custom branch or 0 if published distribution with version as specified should be taken"
PF_BUILDS_WWW_PATH:
value: $BUILDS_WWW_PATH
description: "URL path prefix for builds server"
PF_BUILDS_SSH_PORT:
value: $BUILDS_SSH_PORT
description: "Port used for SSH connection to builds server"
PF_BUILDS_SSH_SERVER:
value: $BUILDS_SSH_SERVER
description: "URL of the build server"
PF_BUILDS_SSH_USER:
value: $BUILDS_SSH_USER
description: "Username used for SSH connection to builds server"
PF_GAMS_LICENSE:
value: $GAMS_LICENSE
description: "GAMS license string used for testing"
PF_PYPI_USERNAME:
value: $PYPI_USERNAME
description: "Username for PyPI"
PF_PYPI_PASSWORD:
value: $PYPI_PASSWORD
description: "Password for PyPI"
include: ['ci/.formatter.yml',
'ci/.cli.yml',
'ci/.test-leg.yml',
'ci/.test-dac.yml',
'ci/.test-deg.yml',
'ci/.test-wei.yml',
'ci/.update-website.yml',
'ci/.upload.yml',
'ci/.docs.yml',
'ci/.performance.yml']