-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconvey.yml
103 lines (84 loc) · 1.94 KB
/
convey.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
environment:
- REPO=pidgin/builders
- REGISTRY_USERNAME
- REGISTRY_PASSWORD
- REGISTRY=docker.io
tasks:
import:
type: docker/import
files: .:.
build:
type: docker/build
dockerfile: Dockerfile.${TARGET}
tag: ${REGISTRY}/${REPO}:${TARGET}
files: .:.
labels:
- COMMIT=${HG_COMMIT}
publish:
type: docker/push
image: ${REGISTRY}/${REPO}:${TARGET}
login:
type: docker/login
username: ${REGISTRY_USERNAME}
password: ${REGISTRY_PASSWORD}
server: ${REGISTRY}
logout:
type: docker/logout
server: ${REGISTRY}
clean:
type: docker/remove
quiet: true
images: ${REGISTRY}/${REPO}:${TARGET}
plans:
appimage-x86_64:
environment: TARGET=appimage-x86_64
stages:
- tasks: [import, build]
clean:
stages:
- tasks: clean
crossroad-mingw-w64:
environment: TARGET=crossroad
stages:
- tasks: [import, build]
debian-bullseye-amd64:
environment: TARGET=debian-bullseye-amd64
stages:
- tasks: [import, build]
debian-buster-amd64:
environment: TARGET=debian-buster-amd64
stages:
- tasks: [import, build]
mingw-w64-x86_64:
environment: TARGET=mingw-w64-x86_64
stages:
- tasks: [import, build]
subproject-build:
environment: TARGET=subproject-build
stages:
- tasks: [import, build]
subproject-build-clang:
environment: TARGET=subproject-build-clang
stages:
- tasks: [import, build]
ubuntu-focal-amd64:
environment: TARGET=ubuntu-focal-amd64
stages:
- tasks: [import, build]
build:
stages:
- tasks: [import, build]
publish:
environment: [REGISTRY_USERNAME, REGISTRY_PASSWORD]
stages:
- tasks: [login, publish]
- tasks: [logout]
run: always
pvs-studio:
environment: TARGET=pvs-studio
stages:
- tasks: [import, build]
scanbuild:
environment: TARGET=scanbuild
stages:
- tasks: [import, build]