forked from NicolasPetton/Indium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitlab-ci.yml
More file actions
37 lines (30 loc) · 774 Bytes
/
.gitlab-ci.yml
File metadata and controls
37 lines (30 loc) · 774 Bytes
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
image: nicolaspetton/emacs-nodejs-docker:latest
.prepare_job_template: &prepare_job_template
before_script:
- evm use $EMACS_VERSION
- emacs --version
- make dependencies
.test_job_template: &test_job_definition
<<: *prepare_job_template
script:
- make test
.lint_job_template: &lint_job_definition
<<: *prepare_job_template
script:
- make lint
test:emacs:25.3:
variables:
EMACS_VERSION: "emacs-25.3-travis"
<<: *test_job_definition
test:emacs:26:
variables:
EMACS_VERSION: "emacs-26-pretest-travis"
<<: *test_job_definition
lint:emacs:25.3:
variables:
EMACS_VERSION: "emacs-25.3-travis"
<<: *lint_job_definition
lint:emacs:26:
variables:
EMACS_VERSION: "emacs-26-pretest-travis"
<<: *lint_job_definition