Mypal/security/nss/automation/taskcluster/scripts/build_gyp.sh

25 lines
481 B
Bash
Raw Normal View History

2019-03-11 03:26:37 -07:00
#!/usr/bin/env bash
source $(dirname "$0")/tools.sh
# Clone NSPR if needed.
hg_clone https://hg.mozilla.org/projects/nspr ./nspr default
2020-03-12 10:40:28 -07:00
if [[ -f nss/nspr.patch && "$ALLOW_NSPR_PATCH" == "1" ]]; then
pushd nspr
cat ../nss/nspr.patch | patch -p1
popd
fi
2019-03-11 03:26:37 -07:00
# Build.
2020-03-12 10:40:28 -07:00
nss/build.sh -g -v --enable-libpkix "$@"
2019-03-11 03:26:37 -07:00
# Package.
if [[ $(uname) = "Darwin" ]]; then
mkdir -p public
tar cvfjh public/dist.tar.bz2 dist
else
mkdir artifacts
tar cvfjh artifacts/dist.tar.bz2 dist
fi