-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.drone.yml
63 lines (53 loc) · 1.08 KB
/
.drone.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
---
kind: pipeline
name: default
platform:
os: linux
arch: amd64
steps:
- name: build
image: trion/ng-cli-karma:8.0.2
commands:
- npm install
- npm run build
- name: test
image: trion/ng-cli-karma:8.0.2
commands:
- npm install
- ng test --watch=false --progress=false --code-coverage
- name: codecov
image: robertstettner/drone-codecov
settings:
paths:
- coverage
token:
from_secret: codecov_token
- name: e2e
image: trion/ng-cli-karma:latest
commands:
- npm install
- ng e2e
- name: docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: p2olab/polaris-frontend
auto_tag: true
- name: docker-arm
image: plugins/docker
settings:
dockerfile: Dockerfile.arm
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: p2olab/polaris-frontend
auto_tag: true
auto_tag_suffix: arm
---
kind: signature
hmac: 58aaccd193aef862418f242688920adeafc3bb8ef6f24df30928e3a0c5ed33ba
...