forked from clojure-emacs/cider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.yml
106 lines (95 loc) · 2.11 KB
/
config.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
version: 2.1
orbs:
win: circleci/[email protected]
# Default actions to perform on each Emacs version
commands:
setup:
steps:
- checkout
- run:
name: Install Eldev
command: curl -fsSL https://raw.github.com/doublep/eldev/master/webinstall/circle-eldev > x.sh && source ./x.sh
- run:
name: Install unzip
command: apt-get update && apt-get install unzip
setup-windows:
steps:
- checkout
- run:
name: Install Eldev
command: (iwr https://raw.github.com/doublep/eldev/master/webinstall/circle-eldev.ps1).Content | powershell -command -
test:
steps:
- run:
name: Run regression tests
command: eldev -dtT -p test
lint:
steps:
- run:
name: Run Elisp-lint
command: eldev lint
- run:
name: Byte-compile `.el' files
command: eldev -dtT compile --warnings-as-errors
jobs:
test-emacs-25:
docker:
- image: silex/emacs:25-dev
entrypoint: bash
steps:
- setup
- test
test-emacs-26:
docker:
- image: silex/emacs:26-dev
entrypoint: bash
steps:
- setup
- test
test-emacs-27:
docker:
- image: silex/emacs:27-dev
entrypoint: bash
steps:
- setup
- test
test-emacs-master:
docker:
- image: silex/emacs:master-dev
entrypoint: bash
steps:
- setup
- test
test-windows-emacs-latest:
executor: win/default
steps:
- run:
name: Install Emacs latest
command: choco install emacs
- setup-windows
- test
test-lint:
docker:
- image: silex/emacs:27-dev
steps:
- setup
- lint
test-windows-lint:
executor: win/default
steps:
- run:
name: Install Emacs latest
command: choco install emacs
- setup-windows
- lint
workflows:
version: 2
ci-test-matrix:
jobs:
- test-emacs-25
- test-emacs-26
- test-emacs-27
- test-emacs-master
- test-lint
- test-windows-emacs-latest
- test-windows-lint