Skip to content

Commit

Permalink
grep -i error
Browse files Browse the repository at this point in the history
Signed-off-by: jcleng <[email protected]>
  • Loading branch information
jcleng committed Jan 20, 2023
1 parent 266d81d commit 8d60618
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-openwrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
make download -j8
rm -rf build.log
# | grep -i error
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log | grep -i error
cp build.log ./bin
grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' > DEVICE_NAME
[ -s DEVICE_NAME ] && echo "DEVICE_NAME=_$(cat DEVICE_NAME)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fast-300m.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
make download -j8
rm -rf build.log
# | grep -i error
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log | grep -i error
cp build.log ./bin
grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' > DEVICE_NAME
[ -s DEVICE_NAME ] && echo "DEVICE_NAME=_$(cat DEVICE_NAME)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/x86.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
make download -j8
rm -rf build.log
# | grep -i error
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log
make -j$(expr $(nproc) + 12) V=99 2>&1 | tee build.log | grep -i error
cp build.log ./bin
grep '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' > DEVICE_NAME
[ -s DEVICE_NAME ] && echo "DEVICE_NAME=_$(cat DEVICE_NAME)" >> $GITHUB_ENV
Expand Down

0 comments on commit 8d60618

Please sign in to comment.