-
Notifications
You must be signed in to change notification settings - Fork 177
/
.build.yml
60 lines (55 loc) · 1.9 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
60
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-rhel-8
- docker.qe.aerospike.com/build/aerospike-server:arm-rhel-9
- docker.qe.aerospike.com/build/aerospike-server:arm-debian-11
- docker.qe.aerospike.com/build/aerospike-server:arm-debian-12
- docker.qe.aerospike.com/build/aerospike-server:arm-ubuntu-20.04
- docker.qe.aerospike.com/build/aerospike-server:arm-ubuntu-22.04
- docker.qe.aerospike.com/build/aerospike-server:arm-ubuntu-24.04
- docker.qe.aerospike.com/build/aerospike-server:arm-amazonlinux-2023
- docker.qe.aerospike.com/build/aerospike-server:x86-rhel-8
- docker.qe.aerospike.com/build/aerospike-server:x86-rhel-9
- docker.qe.aerospike.com/build/aerospike-server:x86-debian-11
- docker.qe.aerospike.com/build/aerospike-server:x86-debian-12
- docker.qe.aerospike.com/build/aerospike-server:x86-ubuntu-20.04
- docker.qe.aerospike.com/build/aerospike-server:x86-ubuntu-22.04
- docker.qe.aerospike.com/build/aerospike-server:x86-ubuntu-24.04
- docker.qe.aerospike.com/build/aerospike-server:x86-amazonlinux-2023
build:
- name: community
environment:
EEREPO:
script:
- make -j
- make $PKG
- make source
artifact:
- pkg/packages/*
- 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/*