Skip to content

Commit 22236ce

Browse files
author
Vincent Li
committed
update
1 parent 572b12c commit 22236ce

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/ci_child.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ jobs:
7676
git fetch --depth=1 origin main
7777
git show origin/main:ascend_test_suite/daemon.sh > daemon.sh
7878
chmod a+x daemon.sh
79-
echo '${{ toJson(matrix.docker_args) }}'
80-
echo '${{ toJson(matrix.volumes) }}'
81-
echo '${{ toJson(matrix.shm_size) }}'
79+
DOCKER_ARGS="${{ join(matrix.docker_args, ' ') }}"
80+
VOLUME_ARGS=$(printf " -v %s" ${{ join(matrix.volumes, ' ') }})
81+
SHM_SIZE="${{ matrix.shm_size }}"
82+
echo "DOCKER_ARGS=$DOCKER_ARGS"
83+
echo "VOLUME_ARGS=$VOLUME_ARGS"
84+
echo "SHM_SIZE=$SHM_SIZE"

0 commit comments

Comments
 (0)