Skip to content

Commit

Permalink
chore: fix esp32 ci exit code
Browse files Browse the repository at this point in the history
  • Loading branch information
UncleRus committed Aug 29, 2023
1 parent 88ccff0 commit 19eb027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ jobs:
for component in ${examples}; do
for dir in ${component}/*; do
cd ${dir}
idf.py --ccache build
idf.py --ccache build; res=$?; [ $res -ne 0 ] && exit $res
rm -rf build
cd ../..
done
Expand Down

0 comments on commit 19eb027

Please sign in to comment.