-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.gitlab-ci.yml
70 lines (65 loc) · 1.43 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
publish-armhf:
stage: deploy
image: clickable/ci-16.04-armhf
only:
- tags
script:
- clickable clean build click-build
- clickable publish "$CI_COMMIT_MESSAGE"
artifacts:
paths:
- build/arm-linux-gnueabihf/app/*.click
expire_in: 1 week
publish-arm64:
stage: deploy
image: clickable/ci-16.04-arm64
only:
- tags
script:
- clickable clean build click-build --arch arm64
- clickable publish "$CI_COMMIT_MESSAGE"
artifacts:
paths:
- build/aarch64-linux-gnu/app/*.click
expire_in: 1 week
publish-amd64:
stage: deploy
image: clickable/ci-16.04-amd64
only:
- tags
script:
- clickable clean build click-build --arch amd64
- clickable publish "$CI_COMMIT_MESSAGE"
artifacts:
paths:
- build/x86_64-linux-gnu/app/*.click
expire_in: 1 week
build-armhf:
stage: build
image: clickable/ci-16.04-armhf
except:
- tags
script:
- clickable clean build
artifacts:
paths:
- build/arm-linux-gnueabihf/app/*.click
expire_in: 1 week
build-arm64:
stage: build
image: clickable/ci-16.04-arm64
script:
- clickable clean build --arch arm64
artifacts:
paths:
- build/aarch64-linux-gnu/app/*.click
expire_in: 1 week
build-amd64:
stage: build
image: clickable/ci-16.04-amd64
script:
- clickable clean build --arch amd64
artifacts:
paths:
- build/x86_64-linux-gnu/app/*.click
expire_in: 1 week