forked from aerospike/aerospike-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.build.yml
59 lines (54 loc) · 1.72 KB
/
.build.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
name: aerospike-server
environment:
EEREPO: modules/ee
FIPSREPO: modules/fips
dependency:
- url: git@github.com:citrusleaf/aerospike-server-enterprise
dir: $EEREPO
- url: git@github.com:citrusleaf/aerospike-server-fips
dir: $FIPSREPO
container:
- base:
- docker.qe.aerospike.com/build/aerospike-server:arm-centos-7
- docker.qe.aerospike.com/build/aerospike-server:arm-rhel-8
- docker.qe.aerospike.com/build/aerospike-server:arm-debian-10
- docker.qe.aerospike.com/build/aerospike-server:arm-debian-11
- docker.qe.aerospike.com/build/aerospike-server:arm-ubuntu-18.04
- docker.qe.aerospike.com/build/aerospike-server:arm-ubuntu-20.04
- docker.qe.aerospike.com/build/aerospike-server:x86-centos-7
- docker.qe.aerospike.com/build/aerospike-server:x86-rhel-8
- docker.qe.aerospike.com/build/aerospike-server:x86-debian-10
- docker.qe.aerospike.com/build/aerospike-server:x86-debian-11
- docker.qe.aerospike.com/build/aerospike-server:x86-ubuntu-18.04
- docker.qe.aerospike.com/build/aerospike-server:x86-ubuntu-20.04
build:
- name: community
environment:
EEREPO:
script:
- make -j
- make $PKG
- make tar
- make source
- cp -p modules/telemetry/{README,TELEMETRY}.md
artifact:
- pkg/packages/*
- modules/telemetry/TELEMETRY.md
- name: enterprise
environment:
EEREPO: /work/source/$EEREPO
script:
- make -j +ee
- make $PKG+ee
- make source+ee
artifact:
- pkg/packages/*
- name: fips
environment:
EEREPO: /work/source/$EEREPO
FIPSREPO: /work/source/$FIPSREPO
script:
- make -j +fips
- make $PKG+fips
artifact:
- pkg/packages/*