mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 05:48:38 +09:00
13 lines
308 B
Bash
13 lines
308 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -v -e -x
|
|
|
|
# Set up the toolchain.
|
|
source $(dirname $0)/setup.sh
|
|
|
|
# Fetch artifact.
|
|
wget -t 3 --retry-connrefused -w 5 --random-wait https://queue.taskcluster.net/v1/task/$TC_PARENT_TASK_ID/artifacts/public/build/dist.7z -O dist.7z
|
|
7z x dist.7z
|
|
|
|
# Run tests.
|
|
cd nss/tests && ./all.sh
|