Update build-u-boot-with-docker.yml

This commit is contained in:
Igor Pečovnik
2021-12-16 21:42:56 +01:00
committed by GitHub
parent 66b4140d29
commit 5cb614ebfb

View File

@@ -53,7 +53,7 @@ jobs:
id: list_dirs
run: |
COMMAND="cat build/config/target*.conf | grep -v \"^$\" | grep -v \"^#\" | \${{ inputs.include }} \${{ inputs.exclude }} awk '{print \$1\":\"\$2}' | sort | uniq"
COMMAND="cat build/config/target*.conf | grep -v \"^$\" | grep -v \"^#\" | \${{ inputs.include }} \${{ inputs.exclude }} sed 's/\s\s*/ /g' | cut -d' ' -f1,2 | sed 's/ /:/g' | sort | uniq"
echo ::set-output name=matrix::$(for x in $(eval $COMMAND); do echo $x; done|jq -cnR '[inputs | select(length>0)]' | jq)
U-boot: