Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .informant/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prepare = """
set -eu
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y --no-install-recommends git
apt-get install -y --no-install-recommends git lsof
rm -rf /var/lib/apt/lists/*
cd "$INFORMANT_PREPARE_ROOT"
bun install --frozen-lockfile --ignore-scripts
Expand Down
5 changes: 4 additions & 1 deletion .informant/jobs/build.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@ name = "build"
needs = ["test", "typecheck"]
command = """
set -eu
expected_dist="$(mktemp -d)"
trap 'rm -rf "$expected_dist"' EXIT
cp -R web/dist "$expected_dist/dist"
bun run build
git diff --exit-code -- web/dist
diff -ru "$expected_dist/dist" web/dist
"""
timeout_minutes = 15
container = { cpu = 2, memory_mb = 4096 }
Loading