forked from friendsincode/ELS-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
56 lines (48 loc) · 973 Bytes
/
.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
# This file is a template, and might need editing before it works on your project.
# see https://docs.gitlab.com/ce/ci/yaml/README.html for all available options
before_script:
after_script:
build-release:
tags:
- win32
stage: build
script:
- echo "Building"
- ./utils/build.ps1
artifacts:
name: ELS_Plus-$CI_JOB_ID_Build_Debug
paths:
- ./*
build-debug:
tags:
- win32
stage: build
script:
- echo "Building"
- ./utils/build.ps1 -BuildDebug $true
artifacts:
name: ELS_Plus-$CI_JOB_ID_Build_Release
paths:
- ./*
Deploy-release:
tags:
- win32
stage: deploy
script:
- echo "Do your deploy here"
- ./utils/publish.ps1
artifacts:
name: ELS_Plus-$CI_JOB_ID_Deploy_Release
paths:
- elsplus/*
Deploy-debug:
tags:
- win32
stage: deploy
script:
- echo "Do your deploy here"
- ./utils/publish.ps1 -builddebug $true
artifacts:
name: ELS_Plus-$CI_JOB_ID_Deploy_Debug
paths:
- elsplus/*