apheleia/.circleci/config.yml
2021-04-04 10:59:18 -07:00

35 lines
621 B
YAML

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