Skip to content

Commit

Permalink
Update full.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
DHDAXCW authored Mar 15, 2024
1 parent 2c2e5d5 commit 77415bc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/full.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,12 @@ jobs:
run: |
cd $OPENWRTROOT
echo -e "$(nproc) thread compile"
make -j$(($(nproc) + 1)) || make -j$(($(nproc) + 1)) V=s
make tools/compile -j$(nproc) || make tools/compile -j$(nproc)
make toolchain/compile -j$(nproc) || make toolchain/compile -j$(nproc)
make target/compile -j$(nproc) || make target/compile -j$(nproc) IGNORE_ERRORS=1
make diffconfig
make package/compile -j$(nproc) IGNORE_ERRORS=1 || make package/compile -j$(nproc) IGNORE_ERRORS=1
make package/index
cd $OPENWRTROOT/bin/packages/*
PLATFORM=$(basename `pwd`)
echo "PLATFORM=$PLATFORM" >> $GITHUB_ENV
Expand Down

0 comments on commit 77415bc

Please sign in to comment.