Skip to content

Commit

Permalink
ci: add PORT_TO_BUILD to ALLOW_MAKE_JOBS_PACKAGES
Browse files Browse the repository at this point in the history
  • Loading branch information
trombik committed Nov 13, 2024
1 parent d69d292 commit 9eba876
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/poudriere.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,12 @@ jobs:
# packages and ccache cache might help future builds.
# allow MAX_JOBS in ports which take longer to build
echo ALLOW_MAKE_JOBS_PACKAGES="\"rust rust-nightly cmake-core-* qt*-* cura CuraEngine\"" | sudo tee -a /usr/local/etc/poudriere.conf
ORIGIN=`echo ${PORT_TO_BUILD} | sed -e 's/@.*//'`
PKGNAMEPREFIX=`make -V PKGNAMEPREFIX -C "${ORIGIN}"`
PORTNAME=`make -V PORTNAME -C "${ORIGIN}"`
PKGNAMESUFFIX=`make -V PKGNAMESUFFIX -C "${ORIGIN}"`
PKGNAME="${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}"
echo ALLOW_MAKE_JOBS_PACKAGES="\"rust rust-nightly cmake-core-* qt*-* cura ${PKGNAME}\"" | sudo tee -a /usr/local/etc/poudriere.conf
# disable a logic to find out build failure. takes too much time
# and disk space
Expand Down

0 comments on commit 9eba876

Please sign in to comment.