forked from cloudfoundry/buildpacks-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildpack-verification.yml.erb
57 lines (56 loc) · 1.58 KB
/
buildpack-verification.yml.erb
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
---
resource_types:
- name: cron
type: docker-image
source:
repository: cfbuildpacks/cron-resource
resources:
- name: verification-interval
type: cron
source:
expression: "0 6 * * *"
location: {{current-timezone}}
- name: buildpacks-ci
type: git
source:
uri: https://github.com/cloudfoundry/buildpacks-ci
branch: master
- name: verification-whitelist
type: git
source:
uri: https://github.com/cloudfoundry/public-buildpacks-ci-robots
paths: [ binary-verification-whitelist/* ]
- name: hwc-buildpack
type: git
source:
uri: https://github.com/cloudfoundry/hwc-buildpack
branch: master
<% %w(go nodejs ruby python php staticfile binary dotnet-core).each do |language| %>
- name: <%= language %>-buildpack
type: git
source:
uri: https://github.com/<%= organization %>/<%= language %>-buildpack
branch: master
<% end %>
jobs:
- name: verify-buildpack-binaries
public: true
plan:
- do:
- in_parallel:
- get: buildpacks-ci
- get: verification-whitelist
- get: verification-interval
trigger: true
- get: nodejs-buildpack
- get: ruby-buildpack
- get: go-buildpack
- get: python-buildpack
- get: staticfile-buildpack
- get: binary-buildpack
- get: php-buildpack
- get: dotnet-core-buildpack
- get: hwc-buildpack
- task: verify-buildpack-binaries
file: buildpacks-ci/tasks/verify-buildpack-binaries/task.yml
timeout: 1h30m