Skip to content

Commit

Permalink
test group
Browse files Browse the repository at this point in the history
  • Loading branch information
tiopex committed Nov 15, 2023
1 parent e353d2a commit 2ff954f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,13 @@ jobs:
#apt update && apt install -y wget unzip build-essential git bc swig libncurses-dev libpython3-dev libssl-dev cpio rsync subversion
sudo apt update && sudo apt install -y gsfonts
make miyoo_uclibc_defconfig
touch build.log
echo "::group::Verbose logs"
tail -f build.log &
echo "::endgroup::"
set -o pipefail
if ! ( \
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}" 2>&1 \
| tee build.log \
| grep ">>>" \
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}" | grep ">>>" > build.log 2>&1 \
); then tail -n100 build.log && exit 1
fi
Expand Down Expand Up @@ -137,7 +139,7 @@ jobs:
if ! ( \
make sdk CFW_HASH="${{ steps.cfwsha.outputs.cfwsha }}" 2>&1 \
| tee build.log \
| grep ">>>" \
| awk '/>>>/' \
); then tail -n100 build.log && exit 1
fi
Expand Down

0 comments on commit 2ff954f

Please sign in to comment.