aboutsummaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml35
1 files changed, 0 insertions, 35 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
deleted file mode 100644
index fdc3930..0000000
--- a/.circleci/config.yml
+++ /dev/null
@@ -1,35 +0,0 @@
-version: 2
-shared: &shared
- machine:
- image: ubuntu-1604:201903-01
- steps:
- - checkout
- # This command will pick up $VERSION from the environment.
- - run: >-
- make docker
- CMD="make -k compile checkdoc longlines"
-jobs:
- emacs-25:
- <<: *shared
- environment:
- VERSION: "25"
- emacs-26:
- <<: *shared
- environment:
- VERSION: "26"
- emacs-27:
- <<: *shared
- environment:
- VERSION: "27"
- emacs-git:
- <<: *shared
- environment:
- VERSION: "master"
-workflows:
- version: 2
- ci:
- jobs:
- - emacs-25
- - emacs-26
- - emacs-27
- - emacs-git