Skip to content

Commit

Permalink
fix quoting of custom images in TOML, echo test compatibility matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Mar 7, 2024
1 parent afc0b4a commit d26ee15
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/actions/setup-create-base64-config/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,13 @@ runs:
custom_images=""
if [ -n "$CUSTOM_DOCKER_IMAGES" ]; then
custom_images+="[PrivateEthereumNetwork.CustomDockerImages]"
IFS=',' read -r -a array <<< "$CUSTOM_DOCKER_IMAGES"
custom_images+="[PrivateEthereumNetwork.CustomDockerImages]"
IFS=',' read -r -a array <<< "$CUSTOM_DOCKER_IMAGES"
for element in "${array[@]}"; do
custom_images+=$'\n'"$element"
done
for element in "${array[@]}"; do
IFS='=' read -r key value <<< "$element"
custom_images+=$'\n'"$key=\"$value\""
done
fi
if [ -n "$ETH_EXECUTION_CLIENT" ]; then
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/evm-version-compatibility-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,7 @@ jobs:
cd ./integration-tests
JOB_MATRIX_JSON=$(./scripts/buildEvmClientTestMatrixList.sh ./evm_node_compatibility_test_list.json ubuntu-latest)
echo "JOB_MATRIX_JSON=${JOB_MATRIX_JSON}" >> $GITHUB_ENV
echo $JOB_MATRIX_JSON | jq .
# End Build Test Dependencies

Expand Down

0 comments on commit d26ee15

Please sign in to comment.