You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
142 lines
5.1 KiB
142 lines
5.1 KiB
--- |
|
name: "bitcoin-win-0.12" |
|
enable_cache: true |
|
suites: |
|
- "trusty" |
|
architectures: |
|
- "amd64" |
|
packages: |
|
- "g++" |
|
- "git-core" |
|
- "pkg-config" |
|
- "autoconf" |
|
- "libtool" |
|
- "automake" |
|
- "faketime" |
|
- "bsdmainutils" |
|
- "mingw-w64" |
|
- "g++-mingw-w64" |
|
- "nsis" |
|
- "zip" |
|
reference_datetime: "2015-06-01 00:00:00" |
|
remotes: |
|
- "url": "https://github.com/bitcoin/bitcoin.git" |
|
"dir": "bitcoin" |
|
files: [] |
|
script: | |
|
WRAP_DIR=$HOME/wrapped |
|
HOSTS="x86_64-w64-mingw32 i686-w64-mingw32" |
|
CONFIGFLAGS="--enable-reduce-exports" |
|
FAKETIME_HOST_PROGS="g++ ar ranlib nm windres strip" |
|
FAKETIME_PROGS="date makensis zip" |
|
|
|
export QT_RCC_TEST=1 |
|
export GZIP="-9n" |
|
export TAR_OPTIONS="--mtime="$REFERENCE_DATE\\\ $REFERENCE_TIME"" |
|
export TZ="UTC" |
|
export BUILD_DIR=`pwd` |
|
mkdir -p ${WRAP_DIR} |
|
if test -n "$GBUILD_CACHE_ENABLED"; then |
|
export SOURCES_PATH=${GBUILD_COMMON_CACHE} |
|
export BASE_CACHE=${GBUILD_PACKAGE_CACHE} |
|
mkdir -p ${BASE_CACHE} ${SOURCES_PATH} |
|
fi |
|
|
|
# Create global faketime wrappers |
|
for prog in ${FAKETIME_PROGS}; do |
|
echo '#!/bin/bash' > ${WRAP_DIR}/${prog} |
|
echo "REAL=\`which -a ${prog} | grep -v ${WRAP_DIR}/${prog} | head -1\`" >> ${WRAP_DIR}/${prog} |
|
echo 'export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1' >> ${WRAP_DIR}/${prog} |
|
echo "export FAKETIME=\"${REFERENCE_DATETIME}\"" >> ${WRAP_DIR}/${prog} |
|
echo "\$REAL \$@" >> $WRAP_DIR/${prog} |
|
chmod +x ${WRAP_DIR}/${prog} |
|
done |
|
|
|
# Create per-host faketime wrappers |
|
for i in $HOSTS; do |
|
for prog in ${FAKETIME_HOST_PROGS}; do |
|
echo '#!/bin/bash' > ${WRAP_DIR}/${i}-${prog} |
|
echo "REAL=\`which -a ${i}-${prog} | grep -v ${WRAP_DIR}/${i}-${prog} | head -1\`" >> ${WRAP_DIR}/${i}-${prog} |
|
echo 'export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1' >> ${WRAP_DIR}/${i}-${prog} |
|
echo "export FAKETIME=\"${REFERENCE_DATETIME}\"" >> ${WRAP_DIR}/${i}-${prog} |
|
echo "\$REAL \$@" >> $WRAP_DIR/${i}-${prog} |
|
chmod +x ${WRAP_DIR}/${i}-${prog} |
|
done |
|
done |
|
|
|
# Create per-host linker wrapper |
|
# This is only needed for trusty, as the mingw linker leaks a few bytes of |
|
# heap, causing non-determinism. See discussion in https://github.com/bitcoin/bitcoin/pull/6900 |
|
for i in $HOSTS; do |
|
mkdir -p ${WRAP_DIR}/${i} |
|
for prog in collect2; do |
|
echo '#!/bin/bash' > ${WRAP_DIR}/${i}/${prog} |
|
REAL=$(${i}-gcc -print-prog-name=${prog}) |
|
echo "export MALLOC_PERTURB_=255" >> ${WRAP_DIR}/${i}/${prog} |
|
echo "${REAL} \$@" >> $WRAP_DIR/${i}/${prog} |
|
chmod +x ${WRAP_DIR}/${i}/${prog} |
|
done |
|
for prog in gcc g++; do |
|
echo '#!/bin/bash' > ${WRAP_DIR}/${i}-${prog} |
|
echo "REAL=\`which -a ${i}-${prog} | grep -v ${WRAP_DIR}/${i}-${prog} | head -1\`" >> ${WRAP_DIR}/${i}-${prog} |
|
echo 'export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1' >> ${WRAP_DIR}/${i}-${prog} |
|
echo "export FAKETIME=\"${REFERENCE_DATETIME}\"" >> ${WRAP_DIR}/${i}-${prog} |
|
echo "export COMPILER_PATH=${WRAP_DIR}/${i}" >> ${WRAP_DIR}/${i}-${prog} |
|
echo "\$REAL \$@" >> $WRAP_DIR/${i}-${prog} |
|
chmod +x ${WRAP_DIR}/${i}-${prog} |
|
done |
|
done |
|
|
|
export PATH=${WRAP_DIR}:${PATH} |
|
|
|
cd bitcoin |
|
BASEPREFIX=`pwd`/depends |
|
# Build dependencies for each host |
|
for i in $HOSTS; do |
|
make ${MAKEOPTS} -C ${BASEPREFIX} HOST="${i}" |
|
done |
|
|
|
# Create the release tarball using (arbitrarily) the first host |
|
./autogen.sh |
|
./configure --prefix=${BASEPREFIX}/`echo "${HOSTS}" | awk '{print $1;}'` |
|
make dist |
|
SOURCEDIST=`echo bitcoin-*.tar.gz` |
|
DISTNAME=`echo ${SOURCEDIST} | sed 's/.tar.*//'` |
|
|
|
# Correct tar file order |
|
mkdir -p temp |
|
pushd temp |
|
tar xf ../$SOURCEDIST |
|
find bitcoin-* | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ../$SOURCEDIST |
|
mkdir -p $OUTDIR/src |
|
cp ../$SOURCEDIST $OUTDIR/src |
|
popd |
|
|
|
ORIGPATH="$PATH" |
|
# Extract the release tarball into a dir for each host and build |
|
for i in ${HOSTS}; do |
|
export PATH=${BASEPREFIX}/${i}/native/bin:${ORIGPATH} |
|
mkdir -p distsrc-${i} |
|
cd distsrc-${i} |
|
INSTALLPATH=`pwd`/installed/${DISTNAME} |
|
mkdir -p ${INSTALLPATH} |
|
tar --strip-components=1 -xf ../$SOURCEDIST |
|
|
|
./configure --prefix=${BASEPREFIX}/${i} --bindir=${INSTALLPATH}/bin --includedir=${INSTALLPATH}/include --libdir=${INSTALLPATH}/lib --disable-ccache --disable-maintainer-mode --disable-dependency-tracking ${CONFIGFLAGS} |
|
make ${MAKEOPTS} |
|
make deploy |
|
make install-strip |
|
cp -f bitcoin-*setup*.exe $OUTDIR/ |
|
cd installed |
|
mv ${DISTNAME}/bin/*.dll ${DISTNAME}/lib/ |
|
find . -name "lib*.la" -delete |
|
find . -name "lib*.a" -delete |
|
rm -rf ${DISTNAME}/lib/pkgconfig |
|
find ${DISTNAME} -type f | sort | zip -X@ ${OUTDIR}/${DISTNAME}-${i}.zip |
|
cd ../.. |
|
done |
|
cd $OUTDIR |
|
rename 's/-setup\.exe$/-setup-unsigned.exe/' *-setup.exe |
|
find . -name "*-setup-unsigned.exe" | sort | tar --no-recursion --mode='u+rw,go+r-w,a+X' --owner=0 --group=0 -c -T - | gzip -9n > ${OUTDIR}/${DISTNAME}-win-unsigned.tar.gz |
|
mv ${OUTDIR}/${DISTNAME}-x86_64-*.zip ${OUTDIR}/${DISTNAME}-win64.zip |
|
mv ${OUTDIR}/${DISTNAME}-i686-*.zip ${OUTDIR}/${DISTNAME}-win32.zip
|
|
|