Public dry run dryrun-20b59dc46b72
Source commit: 20b59dc46b72103c2f8a516c692b5cc3d54fab19 Public tree identity: sha256:aaa5ac7b58b2a0d23c6b11e5f76324bf3839ca1f62653a83deb736932adcfbd9
This commit is contained in:
commit
2bef715211
221 changed files with 79792 additions and 0 deletions
39
scripts/acceptance-private.sh
Executable file
39
scripts/acceptance-private.sh
Executable file
|
|
@ -0,0 +1,39 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
|
||||
repo="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||
cd "$repo"
|
||||
|
||||
node scripts/acceptance-report.js private
|
||||
node scripts/acceptance-report-smoke.js
|
||||
node scripts/acceptance-doc-contract-smoke.js
|
||||
node scripts/acceptance-environment-contract-smoke.js
|
||||
node scripts/acceptance-evidence-contract-smoke.js
|
||||
node private/hosted-policy/scripts/phase3-live-infra-contract-smoke.js
|
||||
node scripts/code-size-guard.js
|
||||
node scripts/public-private-boundary-smoke.js
|
||||
node scripts/release-blocker-smoke.js
|
||||
node scripts/resource-metering-contract-smoke.js
|
||||
node scripts/hostile-input-contract-smoke.js
|
||||
node scripts/tenant-isolation-contract-smoke.js
|
||||
node scripts/cli-error-exit-smoke.js
|
||||
scripts/release-source-scan.sh
|
||||
cargo test --manifest-path private/hosted-policy/Cargo.toml
|
||||
node private/hosted-policy/scripts/hosted-signup-contract-smoke.js
|
||||
node private/hosted-policy/scripts/prepare-public-release-dryrun-deployment.js
|
||||
node private/hosted-policy/scripts/hosted-deployment-smoke.js
|
||||
node private/hosted-policy/scripts/hosted-client-compat-smoke.js
|
||||
node scripts/self-hosted-coordinator-smoke.js
|
||||
if command -v podman >/dev/null 2>&1; then
|
||||
node private/hosted-policy/scripts/postgres-durable-smoke.js
|
||||
elif command -v nix >/dev/null 2>&1; then
|
||||
nix shell nixpkgs#podman --command node private/hosted-policy/scripts/postgres-durable-smoke.js
|
||||
else
|
||||
node private/hosted-policy/scripts/postgres-durable-smoke.js
|
||||
fi
|
||||
if [[ -n "${DISASMER_PUBLIC_RELEASE_DRYRUN_SERVICE_ADDR:-}" ]]; then
|
||||
node private/hosted-policy/scripts/public-release-dryrun-service-smoke.js
|
||||
fi
|
||||
if [[ "${DISASMER_PUBLIC_RELEASE_DRYRUN_FINAL:-}" == "1" ]]; then
|
||||
node scripts/public-release-dryrun-final-evidence.js
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue