Builds and tests are driven entirely by scripts/ci/*.sh so every step (build, test, image build/push, QA deploy) can be run identically in CI or on a workstation. QA runs as an isolated docker-compose stack with its Postgres volume wiped and recreated on each deploy.
19 lines
622 B
Bash
Executable File
19 lines
622 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Compiles the API (and its dependents) and builds the admin SPA.
|
|
# Acts as the compile gate before tests/image builds run. TreatWarningsAsErrors
|
|
# is enabled across the solution, so this also fails on any compiler warning.
|
|
set -euo pipefail
|
|
cd "$(dirname "${BASH_SOURCE[0]}")" && source ./lib.sh
|
|
cd "$CI_ROOT"
|
|
|
|
log "Restoring and publishing MicCheck.Api (Release)"
|
|
dotnet publish src/api/MicCheck.Api/MicCheck.Api.csproj -c Release
|
|
|
|
log "Installing admin dependencies (npm ci)"
|
|
npm --prefix src/admin ci
|
|
|
|
log "Building admin SPA (vite build)"
|
|
npm --prefix src/admin run build
|
|
|
|
log "build.sh complete"
|