blob: 270bd76d78db2d69ea1b75cabcfd000fbb3a9764 (
plain) (
blame)
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
|
version: 2.1
jobs:
build:
docker:
- image: centos:7
environment:
MALLOC_CHECK_: 1
working_directory: ~/build
steps:
- run:
name: "Prepare"
command: |
yum install -y epel-release
yum install -y git
- checkout
- run:
name: "Initialize"
command: |
.circleci/init.sh
- run:
name: "Install reloc"
command: |
.circleci/install_reloc.sh
- run:
name: "Install spm"
command: |
.circleci/install_spm.sh
- run:
name: "Run tests"
command: |
.circleci/test_spm.sh
|