mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-30 20:08:34 +00:00
19 lines
374 B
Bash
19 lines
374 B
Bash
#!/usr/bin/env bash
|
|
|
|
source $(dirname "$0")/tools.sh
|
|
|
|
# Clone NSPR.
|
|
hg_clone https://hg.mozilla.org/projects/nspr ./nspr default
|
|
|
|
if [[ -f nss/nspr.patch && "$ALLOW_NSPR_PATCH" == "1" ]]; then
|
|
pushd nspr
|
|
cat ../nss/nspr.patch | patch -p1
|
|
popd
|
|
fi
|
|
|
|
out=/home/worker/artifacts
|
|
mkdir -p $out
|
|
|
|
# Generate coverage report.
|
|
cd nss && ./mach coverage --outdir=$out ssl_gtests
|