4141 name : " Build iccDEV Docker"
4242 runs-on : ubuntu-latest
4343 timeout-minutes : 30
44+ defaults :
45+ run :
46+ shell : bash --noprofile --norc {0}
4447
4548 steps :
4649 - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -118,9 +121,13 @@ jobs:
118121 run : docker build -f Dockerfile -t iccdev-test:latest .
119122
120123 - name : Verify tools
121- shell : bash
124+ env :
125+ BASH_ENV : /dev/null
122126 run : |
123127 set -euo pipefail
128+ git config --add safe.directory "$PWD"
129+ git config --global credential.helper ""
130+ unset GITHUB_TOKEN || true
124131 TOOL_COUNT=$(docker run --rm iccdev-test:latest bash -c \
125132 'find /opt/iccdev/Build/Tools -type f -executable | wc -l')
126133 echo "Tools built: $TOOL_COUNT"
@@ -145,9 +152,13 @@ jobs:
145152 >> "$GITHUB_STEP_SUMMARY"
146153 echo '```' >> "$GITHUB_STEP_SUMMARY"
147154 - name : Test tool execution
148- shell : bash
155+ env :
156+ BASH_ENV : /dev/null
149157 run : |
150158 set -euo pipefail
159+ git config --add safe.directory "$PWD"
160+ git config --global credential.helper ""
161+ unset GITHUB_TOKEN || true
151162 FAILURES=0
152163 echo "### Tool Tests" >> "$GITHUB_STEP_SUMMARY"
153164 for tool in iccToXml iccFromXml iccDumpProfile iccRoundTrip; do
@@ -165,9 +176,13 @@ jobs:
165176 exit 1
166177 fi
167178 - name : Test iccToXml profile conversion
168- shell : bash
179+ env :
180+ BASH_ENV : /dev/null
169181 run : |
170182 set -euo pipefail
183+ git config --add safe.directory "$PWD"
184+ git config --global credential.helper ""
185+ unset GITHUB_TOKEN || true
171186 echo "### iccToXml Profile Conversion" >> "$GITHUB_STEP_SUMMARY"
172187 docker run --rm iccdev-test:latest bash -c '
173188 set -euo pipefail
0 commit comments