mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 07:17:32 +09:00
12 lines
251 B
Bash
12 lines
251 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
source $(dirname "$0")/tools.sh
|
||
|
|
|
||
|
|
# Clone NSPR.
|
||
|
|
hg_clone https://hg.mozilla.org/projects/nspr ./nspr default
|
||
|
|
|
||
|
|
out=/home/worker/artifacts
|
||
|
|
mkdir -p $out
|
||
|
|
|
||
|
|
# Generate coverage report.
|
||
|
|
cd nss && ./mach coverage --outdir=$out ssl_gtests
|