forked from aerospike/aerospike-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.build.yml
56 lines (52 loc) · 1.56 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
name: aerospike-server
environment:
EEREPO: modules/ee
FIPSREPO: modules/fips
dependency:
- url: [email protected]:citrusleaf/aerospike-server-enterprise
dir: $EEREPO
- url: [email protected]:citrusleaf/aerospike-server-fips
dir: $FIPSREPO
container:
- base:
- docker.qe.aerospike.com/build/aerospike-server:amazonlinux-1
- docker.qe.aerospike.com/build/aerospike-server:amazonlinux-2
- docker.qe.aerospike.com/build/aerospike-server:centos-7
- docker.qe.aerospike.com/build/aerospike-server:rhel-8
- docker.qe.aerospike.com/build/aerospike-server:debian-9
- docker.qe.aerospike.com/build/aerospike-server:debian-10
- docker.qe.aerospike.com/build/aerospike-server:debian-11
- docker.qe.aerospike.com/build/aerospike-server:oraclelinux-7
- docker.qe.aerospike.com/build/aerospike-server:ubuntu-18.04
- docker.qe.aerospike.com/build/aerospike-server: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/*