blob: a9efb828321210d9bd930ef4f648a0b4ae2f0b39 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pipeline:
current-emacs:
image: silex/emacs:cask
when:
branch: [main, develop]
commands:
- emacs --version
- cask install
- cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit
last-emacs:
image: silex/emacs:27-ci-cask
when:
branch: [main, develop]
commands:
- emacs --version
- cask install
- cask emacs -batch -l test/ert-helper.el -f ert-run-tests-batch-and-exit
|