-
Notifications
You must be signed in to change notification settings - Fork 24
55 lines (53 loc) · 1.47 KB
/
acceptance-tests-for-rabbit.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
name: SCDF AT Rabbit (Shepherd)
on:
workflow_dispatch:
inputs:
cf-host:
type: string
description: 'CF host name (e.g. "z9bdf097a")'
required: true
cf-api-url:
type: string
description: 'CF api url ("https://api.sys.tas.z9bdf097a.shepherd.lease"")'
required: true
cf-apps-domain:
type: string
description: 'CF apps domain ("apps.tas.z9bdf097a.shepherd.lease")'
required: true
tests:
type: string
description: 'Test classes'
default: ''
workflow_call:
inputs:
cf-host:
type: string
description: 'CF host name (e.g. "z9bdf097a")'
required: true
cf-api-url:
type: string
description: 'CF api url ("https://api.sys.tas.z9bdf097a.shepherd.lease"")'
required: true
cf-apps-domain:
type: string
description: 'CF apps domain ("apps.tas.z9bdf097a.shepherd.lease")'
required: true
tests:
type: string
description: 'Test classes'
default: ''
secrets:
CF_PASSWORD:
required: true
jobs:
acceptance-tests-rabbit:
uses: ./.github/workflows/at-common-workflow.yml
with:
cf-host: ${{ inputs.cf-host }}
cf-api-url: ${{ inputs.cf-api-url }}
cf-apps-domain: ${{ inputs.cf-apps-domain }}
binder: rabbit
tests: ${{ inputs.tests }}
secrets:
CF_USERNAME: 'admin'
CF_PASSWORD: ${{ secrets.CF_PASSWORD }}