Skip to content

Commit ae64d25

Browse files
author
Axel Dahlberg
committed
Added gitlab ci
1 parent 65c63b8 commit ae64d25

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

Diff for: .gitlab-ci.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
image: adahlberg/nlblueprintci:19.04
2+
3+
.only_mr: &only_mr
4+
only:
5+
- master
6+
- merge_requests
7+
8+
.install: &install
9+
before_script:
10+
- make install
11+
12+
stages:
13+
- lint
14+
- tests
15+
16+
lint:
17+
<<: *install
18+
stage: lint
19+
script: make lint
20+
<<: *only_mr
21+
22+
test:
23+
<<: *install
24+
stage: tests
25+
script: make tests
26+
<<: *only_mr

0 commit comments

Comments
 (0)