-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
49 lines (45 loc) · 944 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
stages:
# - builds
buildWindows:
stage: builds
variables:
TAG: 1.test.3
tags:
- shell
script:
- wget https://git.duniter.org/clients/cesium-grp/cesium/-/jobs/artifacts/v$TAG/download?job=release-web -O cesium-v$TAG-web.zip
- vboxmanage unregistervm duniter-release-windows --delete || true
- ./scripts/build.sh make win $TAG
- pwd
- ls arch/windows
artifacts:
untracked: true
paths:
- arch/windows
expire_in: 60 minutes
only:
- tags
test:
stage: builds
variables:
GIT_STRATEGY: none
tags:
- shell
script:
- touch ceFichierNExistaitPasAvant
only:
- tags
test2:
stage: builds
image: jencryzthers/vboxinsidedocker
variables:
GIT_STRATEGY: none
tags:
- docker
script:
- apt-get update
- apt-get install -y linux-headers-generic linux-headers-4.4.0-137-generic
- /sbin/vboxconfig
- vboxheadless
only:
- tags