-
Notifications
You must be signed in to change notification settings - Fork 170
/
.gitlab-ci.yml
102 lines (91 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# build needs to be able to find the following libraries:
# - OpenEXR(libHalf.dylib libHalf.a)
# - HDF5(hdf5.a)
# - Alembic (libAlembic.a)
# sourcedir needs submodule initialization (to compile googletest)
# - git submodule update --init --recursive
image: node:6.10.0
variables:
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
- test
#- push_to_packman_staging
build:mac:
stage: build
tags:
- mac
script:
- ./build.sh
artifacts:
name: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME"
paths:
- External/install
- build/install
expire_in: 1 hour
# Important! Do not remove this after_script as the VM will live for 12 hours before being destroyed!
after_script:
- /opt/post_build_script.sh
build:win:
stage: build
tags:
- win
script:
- build.cmd
artifacts:
name: "%CI_JOB_STAGE%-%CI_COMMIT_REF_NAME%"
paths:
- External/install
- build/install
expire_in: 1 hour
# Important! Do not remove this after_script as the VM will live for 12 hours before being destroyed!
after_script:
- C:\Users\builduser\post_build_script.bat
build:lin:
stage: build
tags:
- lin
script:
- ./build.sh
artifacts:
name: "$CI_JOB_STAGE-$CI_COMMIT_REF_NAME"
paths:
- External/install
- build/install
expire_in: 1 hour
# Important! Do not remove this after_script as the VM will live for 12 hours before being destroyed!
after_script:
- /opt/post_build_script.sh
test:mac:
stage: test
tags:
- mac
script:
- npm test
dependencies:
- build:mac
test:win:
stage: test
tags:
- win
script:
- npm test
dependencies:
- build:win
test:lin:
stage: test
tags:
- lin
script:
- npm test
dependencies:
- build:lin
#push_to_packman_staging:
# stage: push_to_packman_staging
# only:
# - /^v\d*$/
# except:
# - branches
# script:
# - curl -u $USER_NAME:$API_KEY https://staging-packages.unity.com/auth > .npmrc
# - npm publish