File tree 1 file changed +11
-8
lines changed
1 file changed +11
-8
lines changed Original file line number Diff line number Diff line change 62
62
INSTALL_TEMPEST=False
63
63
GIT_BASE=https://github.com
64
64
EOF
65
+
66
+ # Overriding target release for unmaintained versions
67
+ # otherwide devstack will fail to clone some repos.
68
+ TARGET_BRANCH=${{ inputs.branch }}
69
+ if [[ "${{ inputs.branch }}" == *"yoga"* ]]; then
70
+ TARGET_BRANCH="yoga-eom"
71
+ fi
72
+ echo "TARGET_BRANCH=${TARGET_BRANCH}" >> local.conf
73
+
65
74
# horizon does not work in github action, permission error
66
75
# dstat log takes too much memory to be stored by log artifacts
67
76
# tempest must be disabled otherwise it will get installed still
@@ -70,17 +79,11 @@ runs:
70
79
ENABLED_SERVICES+=",${{ inputs.enabled_services }}"
71
80
fi
72
81
echo "ENABLED_SERVICES+=${ENABLED_SERVICES}" >> local.conf
82
+
83
+ # This must stay at the end to allow any overrides
73
84
if [[ "${{ inputs.conf_overrides }}" != "" ]]; then
74
85
echo "${{ inputs.conf_overrides }}" >> local.conf
75
86
fi
76
-
77
- # Overriding target release for unmaintained versions
78
- # otherwide devstack will fail to clone some repos.
79
- TARGET_BRANCH=${{ inputs.branch }}
80
- if [[ "${{ inputs.branch }}" == *"yoga"* ]]; then
81
- TARGET_BRANCH="yoga-eom"
82
- fi
83
- echo "TARGET_BRANCH=${TARGET_BRANCH}" >> local.conf
84
87
working-directory : ./devstack
85
88
shell : bash
86
89
- name : Run devstack
You can’t perform that action at this time.
0 commit comments