forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
58 lines (57 loc) · 1.56 KB
/
circle.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
version: 2
jobs:
fedora_bmake:
working_directory: ~/universal-ctags
docker:
- image: docker.io/fedora:latest
steps:
- run:
name: Install Git
command: |
dnf -y install git || :
- checkout
- run:
name: Install build tools
command: |
dnf -y install gcc automake autoconf pkgconfig bmake aspell-devel aspell-en libxml2-devel jansson-devel libyaml-devel findutils || :
- run:
name: Build
command: |
bash ./autogen.sh
MAKE=bmake ./configure --enable-debugging
bmake -j 2
- run:
name: Test
command: |
MAKE=bmake bmake check roundtrip CIRCLECI=1
centos_make:
working_directory: ~/universal-ctags
docker:
- image: docker.io/centos:latest
steps:
- run:
name: Install Git
command: |
yum -y install git || :
- checkout
- run:
name: Install build tools
# TODO: enable spell checker
command: |
yum -y install gcc automake autoconf pkgconfig make libxml2-devel jansson-devel libyaml-devel findutils || :
- run:
name: Build
command: |
bash ./autogen.sh
./configure --enable-debugging
make -j 2
- run:
name: Test
command: |
make check roundtrip CIRCLECI=1
workflows:
version: 2
build_and_test:
jobs:
- fedora_bmake
- centos_make