We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b1f993 commit d7ca792Copy full SHA for d7ca792
.github/composite/godot-itest/action.yml
@@ -179,8 +179,10 @@ runs:
179
run: |
180
cd itest/godot
181
echo "OUTCOME=itest" >> $GITHUB_ENV
182
- $GODOT4_BIN --headless ${{ inputs.godot-args }} 2>&1 | tee "${{ runner.temp }}/log.txt" | tee >(grep "SCRIPT ERROR:" -q && {
183
- printf "\n -- Godot engine encountered error, abort...\n";
+ $GODOT4_BIN --headless ${{ inputs.godot-args }} 2>&1 \
+ | tee "${{ runner.temp }}/log.txt" \
184
+ | tee >(grep -E "SCRIPT ERROR:|Can't open dynamic library" -q && {
185
+ printf "\n::error::godot-itest: unrecoverable Godot error, abort...\n";
186
pkill godot
187
echo "OUTCOME=godot-runtime" >> $GITHUB_ENV
188
exit 2
0 commit comments