Skip to content

Instantly share code, notes, and snippets.

@dlangille
Created March 5, 2015 20:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlangille/d5986448823439af0903 to your computer and use it in GitHub Desktop.
Save dlangille/d5986448823439af0903 to your computer and use it in GitHub Desktop.
daily poudriere builds
#!/bin/sh
POUDRIERE="/usr/local/bin/poudriere"
TREES="default testing"
AMD64_SETS="master-list master-list-php5"
I386_SETS="master-list-i386"
for tree in ${TREES}
do
${POUDRIERE} ports -u -p ${tree}
done
for set in ${AMD64_SETS}
do
poudriere bulk -v -j 93amd64 -p default -z ${set} -f /usr/local/etc/poudriere.d/buildlists/${set}
done
for set in ${I386_SETS}
do
poudriere bulk -v -j 93i386 -p default -z ${set} -f /usr/local/etc/poudriere.d/buildlists/${set}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment