-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
57 lines (53 loc) · 849 Bytes
/
.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
stages:
- build
# amd64
build:ubuntu_amd64:
stage: build
tags:
- amd64
- ubuntu
script:
- make build
artifacts:
name: "redisearchd_ubuntu_amd64"
paths:
- bin
expire_in: 1 week
build:centos_amd64:
stage: build
tags:
- amd64
- centos
script:
- make build
artifacts:
name: "redisearchd_centos_amd64"
paths:
- bin
expire_in: 1 week
# arm64
# build:ubuntu_arm64:
# stage: build
# tags:
# - arm64
# - ubuntu
# script:
# - make build
# artifacts:
# name: "redisearchd_ubuntu_arm64"
# paths:
# - bin
# expire_in: 1 week
#
# build:centos_arm64:
# stage: build
# tags:
# - arm64
# - centos
# script:
# - make build
# artifacts:
# name: "redisearchd_centos_arm64"
# paths:
# - bin
# expire_in: 1 week