forked from GAMS-dev/studio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
41 lines (38 loc) · 1.21 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
stages:
- fetch-prerequisites
- install-gams
- build
- test
- pack
- deploy
variables:
GAMS_CONTAINER_REGISTRY:
value: registry.gams.com/devel
description: "URL to the GAMS container registry"
PF_WEI_DEBUG:
value: 0
description: "A value != 0 builds the Windows debug version only"
PF_CUSTOM_BRANCH:
value: "master"
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"
include: ['ci/.gitlab-ci-0-gams.yml'
,'ci/.gitlab-ci-1-build.yml'
,'ci/.gitlab-ci-2-test.yml'
,'ci/.gitlab-ci-3-pack.yml'
,'ci/.gitlab-ci-4-deploy.yml'
]