forked from ThePixelDeveloper/Sitemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
54 lines (47 loc) · 1.1 KB
/
.gitlab-ci.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
stages:
- test
- deploy
.composer_cache: &composer_cache
cache:
paths:
- vendor/
.install_dependencies: &install_dependencies
before_script:
- composer install --prefer-dist --classmap-authoritative --no-interaction --no-progress
.composer_test: &composer_test
script:
- composer test
lint (phpstan):
image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.1
stage: test
<<: *install_dependencies
<<: *composer_cache
script:
- composer lint
test php 7.1:
image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.1
stage: test
<<: *install_dependencies
<<: *composer_test
<<: *composer_cache
artifacts:
paths:
- coverage/
test php 7.2:
image: $CI_REGISTRY/mathew-davies/dockerimages/php:7.2
stage: test
<<: *install_dependencies
<<: *composer_test
<<: *composer_cache
pages:
stage: deploy
dependencies:
- test php 7.1
script:
- mv coverage/ public/
artifacts:
expire_in: 30 days
paths:
- public
only:
- master