forked from cloudfoundry/persi-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnorsk.yml
105 lines (102 loc) · 2.85 KB
/
norsk.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
---
resources:
- name: oslo-scan-status
type: git
source:
private_key: ((github.ssh_key))
uri: [email protected]:pivotal/oslo-scan-status.git
paths:
- nfs-volume-release/*
- smb-volume-release/*
- mapfs-release/*
jobs:
- name: norsk-status-nfs
plan:
- get: oslo-scan-status
trigger: true
- task: check-status-file
config:
platform: linux
image_resource:
type: docker-image
source: {repository: ubuntu}
inputs:
- name: oslo-scan-status
run:
path: sh
args:
- -c
- |
status_file=oslo-scan-status/nfs-volume-release/status.json
cat "$status_file"
num_failures="$(grep -c '"status": "failed"' $status_file)"
echo ""
if [ "$num_failures" -eq 0 ]; then
echo "No failures found"
exit 0
else
echo "$num_failures failures found!"
echo "Please check your norsk-viewers pipelines specified in the status.json and resolve the errors."
echo "Contact the OSL team if you need help."
exit 1
fi
- name: norsk-status-mapfs
plan:
- get: oslo-scan-status
trigger: true
- task: check-status-file
config:
platform: linux
image_resource:
type: docker-image
source: {repository: ubuntu}
inputs:
- name: oslo-scan-status
run:
path: sh
args:
- -c
- |
status_file=oslo-scan-status/mapfs-release/status.json
cat "$status_file"
num_failures="$(grep -c '"status": "failed"' $status_file)"
echo ""
if [ "$num_failures" -eq 0 ]; then
echo "No failures found"
exit 0
else
echo "$num_failures failures found!"
echo "Please check your norsk-viewers pipelines specified in the status.json and resolve the errors."
echo "Contact the OSL team if you need help."
exit 1
fi
- name: norsk-status-smb
plan:
- get: oslo-scan-status
trigger: true
- task: check-status-file
config:
platform: linux
image_resource:
type: docker-image
source: {repository: ubuntu}
inputs:
- name: oslo-scan-status
run:
path: sh
args:
- -c
- |
status_file=oslo-scan-status/smb-volume-release/status.json
cat "$status_file"
num_failures="$(grep -c '"status": "failed"' $status_file)"
echo ""
if [ "$num_failures" -eq 0 ]; then
echo "No failures found"
exit 0
else
echo "$num_failures failures found!"
echo "Please check your norsk-viewers pipelines specified in the status.json and resolve the errors."
echo "Contact the OSL team if you need help."
exit 1
fi