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

25 lines
503 B
Bash
Raw Normal View History

2019-03-11 10:26:37 +00: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 17:40:28 +00:00
if [[ -f nss/nspr.patch && "$ALLOW_NSPR_PATCH" == "1" ]]; then
pushd nspr
cat ../nss/nspr.patch | patch -p1
popd
fi
2019-03-11 10:26:37 +00:00
# Build.
2021-01-17 14:11:03 +00:00
nss/build.sh -g -v --enable-libpkix -Denable_draft_hpke=1 "$@"
2019-03-11 10:26:37 +00: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