diff --git a/circle.yml b/circle.yml index 47c1be95b0..c6379c4e04 100644 --- a/circle.yml +++ b/circle.yml @@ -1,6 +1,6 @@ version: 2 jobs: - build: + fedora_bmake: working_directory: ~/universal-ctags docker: - image: docker.io/fedora:latest @@ -24,3 +24,35 @@ jobs: 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