mirror of
https://github.com/namecoin/ncdns-repro
synced 2024-11-13 19:12:01 +00:00
5d67272dca
Use 1 thread for all other projects. Disable the checkpointing patch to see if 8 threads is enough to build without it.
20 lines
616 B
Bash
Executable File
20 lines
616 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
shopt -s nullglob globstar
|
|
|
|
pushd tor-browser-build
|
|
# Undo any of Namecoin's patches that might have been done previously.
|
|
git reset --hard HEAD
|
|
git clean -dfx
|
|
|
|
# The checkpoint patch is disabled while we evaluate whether the move to 8x
|
|
# CPU's per VM is sufficient to build within a single task time limit.
|
|
#patch -p1 < ../tools/checkpoints.patch
|
|
|
|
popd
|
|
|
|
# Rename torbrowser to ncdns
|
|
# Use ncdns_version from ncdns project
|
|
cat tor-browser-build/rbm.conf | sed "s/torbrowser/ncdns/g" | sed "s/ncdns_version: '.*'/ncdns_version: '[% pc(\"ncdns\", \"version\") %]'/g" > rbm.conf
|