Skip to content

Commit 0244804

Browse files
committed
test
Signed-off-by: Kaituo Li <kaituo@amazon.com>
1 parent 0a748c7 commit 0244804

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/remote-integ-tests-workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -147,15 +147,15 @@ jobs:
147147

148148
- name: Print spec files from output
149149
run: |
150-
IFS="," read -a myarray <<< ${{ steps.finding-files.outputs.FILELIST }}
150+
IFS=$'\n' read -a myarray <<< ${{ steps.finding-files.outputs.FILELIST }}
151151
for i in "${myarray[@]}"; do
152152
echo "${i}"
153153
done
154154
working-directory: opensearch-dashboards-functional-test
155155

156156
- name: Run spec files from output
157157
run: |
158-
IFS="," read -a myarray <<< ${{ steps.finding-files.outputs.FILELIST }}
158+
IFS=$'\n' read -a myarray <<< ${{ steps.finding-files.outputs.FILELIST }}
159159
for i in "${myarray[@]}"; do
160160
yarn cypress:run-without-security --browser electron --spec "${i}"
161161
sleep 60

0 commit comments

Comments
 (0)