File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 50
50
INDEX_PATH_TO_SIGN : " not-defined"
51
51
SIGNATURE_ENDPOINT : " https://not-defined"
52
52
OPP_REVIEWERS_ENABLED : 0
53
- TMPDIR : " /mnt/tmp"
54
53
55
54
56
55
OPP_ALLOW_FORCE_RELEASE : ${{ github.event.inputs.release }}
70
69
name : " PR-traffic-light"
71
70
runs-on : ubuntu-latest
72
71
steps :
73
- - name : Set up TMPDIR
74
- run : |
75
- sudo mkdir "${TMPDIR}"
76
- sudo chmod 1777 "${TMPDIR}"
77
-
78
72
- name : Checkout code
79
73
uses : actions/checkout@v3
80
74
- id : files
@@ -232,7 +226,10 @@ jobs:
232
226
ANSIBLE_FORCE_COLOR : 1
233
227
ANSIBLE_DISPLAY_SKIPPED_HOSTS : 0
234
228
ANSIBLE_STDOUT_CALLBACK : " yaml"
229
+ TMPDIR : " /mnt/tmp"
235
230
run : |
231
+ sudo mkdir -p "${TMPDIR}"
232
+ sudo chmod 1777 "${TMPDIR}"
236
233
OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
237
234
echo $OPP_FORCE_OPERATORS
238
235
[ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
Original file line number Diff line number Diff line change 63
63
INDEX_PATH_TO_SIGN : " not-defined"
64
64
SIGNATURE_ENDPOINT : " https://not-defined"
65
65
OPP_REVIEWERS_ENABLED : 0
66
- TMPDIR : " /mnt/tmp"
67
66
68
67
69
68
OPP_ALLOW_FORCE_RELEASE : ${{ github.event.inputs.release }}
83
82
name : " PR-traffic-light"
84
83
runs-on : ubuntu-latest
85
84
steps :
86
- - name : Set up TMPDIR
87
- run : |
88
- sudo mkdir "${TMPDIR}"
89
- sudo chmod 1777 "${TMPDIR}"
90
-
91
85
- name : Checkout code
92
86
uses : actions/checkout@v3
93
87
- id : files
@@ -239,7 +233,10 @@ jobs:
239
233
ANSIBLE_FORCE_COLOR : 1
240
234
ANSIBLE_DISPLAY_SKIPPED_HOSTS : 0
241
235
ANSIBLE_STDOUT_CALLBACK : " yaml"
236
+ TMPDIR : " /mnt/tmp"
242
237
run : |
238
+ sudo mkdir -p "${TMPDIR}"
239
+ sudo chmod 1777 "${TMPDIR}"
243
240
OPP_FORCE_OPERATORS=${OPP_FORCE_OPERATORS// /,}
244
241
echo $OPP_FORCE_OPERATORS
245
242
[ "$OPP_AUTO_LABEL" = '1' ] && ANSIBLE_ARGS="-e automatic_cluster_version_label=true" || ANSIBLE_ARGS="-e automatic_cluster_version_label=false"
You can’t perform that action at this time.
0 commit comments