We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ee58a commit 7fa4136Copy full SHA for 7fa4136
action.yaml
@@ -35,9 +35,15 @@ runs:
35
RABBIT_PASSWORD=secret
36
SERVICE_PASSWORD=secret
37
SWIFT_HASH=1234123412341234
38
- ENABLED_SERVICES+=-horizon,-dstat,${{ inputs.enabled_services }}
39
LOGFILE=${{ inputs.log_dir }}/devstack.log
40
EOF
+ # horizon does not work in github action, permission error
41
+ # dstat log takes too much memory to be stored by log artifacts
42
+ ENABLED_SERVICES=",-horizon,-dstat"
43
+ if [[ "${{ inputs.enabled_services }}" != "" ]]; then
44
+ ENABLED_SERVICES+=",${{ inputs.enabled_services }}"
45
+ fi
46
+ echo "${ENABLED_SERVICES}" >> local.conf
47
working-directory: ./devstack
48
shell: bash
49
- name: Run devstack
0 commit comments