We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 572b12c commit 22236ceCopy full SHA for 22236ce
1 file changed
.github/workflows/ci_child.yml
@@ -76,6 +76,9 @@ jobs:
76
git fetch --depth=1 origin main
77
git show origin/main:ascend_test_suite/daemon.sh > daemon.sh
78
chmod a+x daemon.sh
79
- echo '${{ toJson(matrix.docker_args) }}'
80
- echo '${{ toJson(matrix.volumes) }}'
81
- echo '${{ toJson(matrix.shm_size) }}'
+ DOCKER_ARGS="${{ join(matrix.docker_args, ' ') }}"
+ VOLUME_ARGS=$(printf " -v %s" ${{ join(matrix.volumes, ' ') }})
+ 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