diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 53b977c..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,41 +0,0 @@ -version: 2 -jobs: - build-and-run-tests: - docker: - - image: ubuntu:14.04 - - image: redis:5.0.5-alpine - - working_directory: ~/webdis - - steps: - # Ubuntu setup (git needed for local execution with circleci) - - run: - name : Ubuntu update and Git install - command: | - apt-get -y update && - apt-get -y upgrade && - apt-get -y --force-yes install git - - - checkout - - - run: - name : Set up build environment - command: | - apt-get -y --force-yes install wget make gcc libevent-dev libmsgpack-dev python3 - - - run: - name: Build and run webdis - command: | - make && - sed -i -e 's/"daemonize":.*false,/"daemonize": true,/g' webdis.json && - ./webdis webdis.json - - - run: - name: Run tests - command: ./tests/basic.py - -workflows: - version: 2 - build-and-run-tests: - jobs: - - build-and-run-tests diff --git a/README.md b/README.md index ac52133..71bf727 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,3 @@ -[![CircleCI](https://circleci.com/gh/nicolasff/webdis.svg?style=shield)](https://circleci.com/gh/nicolasff/webdis) [![Build](https://github.com/nicolasff/webdis/actions/workflows/build.yml/badge.svg)](https://github.com/nicolasff/webdis/actions/workflows/build.yml)