Skip to content

Commit

Permalink
fix(ci): catch script errors
Browse files Browse the repository at this point in the history
  • Loading branch information
andelf committed Apr 30, 2024
1 parent 00cd4b7 commit 447213b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,4 @@ jobs:
cd ../ch32-data/build/
git clone https://github.com/ch32-rs/ch32-metapac.git
- name: Build Only
run: |
./ci.sh
run: ./ci.sh
2 changes: 1 addition & 1 deletion ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
set -ex
set -o pipefail

for d in $(find examples -depth 1 -type d); do
for d in $(find examples -maxdepth 1 -type d); do
(cd $d && cargo build --release)
done

0 comments on commit 447213b

Please sign in to comment.