longhouse-build-test
completed- Job ID
019db161-41a5-789f-141b-7163067ea3c9- Created
- 2026-04-21 18:50:34 UTC
- Updated
- 2026-04-21 18:50:34 UTC
- Duration
- 45s
- Source Ref
- 425a8832ae74caceb06b3e5b747d765390002834
- Source URL
- https://github.com/catalystcommunity/longhouse.git
- Runner Image
10.16.0.1:5000/public/reactorcide/runnerbase:dev- Priority
- 10
- Queue
- reactorcide-jobs
Logs
2026-04-21T18:50:38.226748+00:00 ⚠️ Configuration warnings:
• runner_image: Using 'latest' tag or no tag specified
💡 Consider using a specific version tag for reproducible builds
✅ Configuration is valid (with warnings)
2026-04-21T18:50:38.227302+00:00 [INFO] [runnerlib] Preparing CI source type=git url=https://github.com/catalystcommunity/longhouse.git ref=425a8832ae74caceb06b3e5b747d765390002834
2026-04-21T18:50:38.227540+00:00 [INFO] [runnerlib] Preparing git source url=https://github.com/catalystcommunity/longhouse.git ref=425a8832ae74caceb06b3e5b747d765390002834 target=/job/ci
2026-04-21T18:50:38.935129+00:00 [INFO] [runnerlib] Git source prepared successfully path=/job/ci
2026-04-21T18:50:38.935887+00:00 [INFO] [runnerlib] Preparing source type=git url=https://github.com/catalystcommunity/longhouse.git ref=425a8832ae74caceb06b3e5b747d765390002834
2026-04-21T18:50:38.935979+00:00 [INFO] [runnerlib] Preparing git source url=https://github.com/catalystcommunity/longhouse.git ref=425a8832ae74caceb06b3e5b747d765390002834 target=/job/src
2026-04-21T18:50:39.582439+00:00 [INFO] [runnerlib] Git source prepared successfully path=/job/src
2026-04-21T18:50:39.583096+00:00 [INFO] [runnerlib] Initialized 0 plugins
2026-04-21T18:50:38.227440+00:00 🔐 Preparing trusted CI source (type: git)
2026-04-21T18:50:38.227616+00:00 Cloning git repository: https://github.com/catalystcommunity/longhouse.git
2026-04-21T18:50:38.910691+00:00 Checking out ref: 425a8832ae74caceb06b3e5b747d765390002834
2026-04-21T18:50:38.935283+00:00 Repository checked out to: /job/ci
2026-04-21T18:50:38.936037+00:00 Cloning git repository: https://github.com/catalystcommunity/longhouse.git
2026-04-21T18:50:39.564667+00:00 Checking out ref: 425a8832ae74caceb06b3e5b747d765390002834
2026-04-21T18:50:39.582550+00:00 Repository checked out to: /job/src
2026-04-21T18:50:39.583203+00:00 Executing job locally (no container)
2026-04-21T18:50:39.583228+00:00 Command: set -e
export HOME="${HOME:-/tmp/home}"
mkdir -p "$HOME/.local"
# Install Go toolchain
curl -fsSL https://go.dev/dl/go1.23.8.linux-amd64.tar.gz -o /tmp/go.tar.gz
tar -C "$HOME/.local" -xzf /tmp/go.tar.gz
rm /tmp/go.tar.gz
export PATH="$HOME/.local/go/bin:$HOME/go/bin:$PATH"
cd /job/src
echo "=== Building API ==="
cd api
go build ./...
echo "=== Testing API ==="
go test ./...
echo "=== Building Webapp ==="
cd ../webapp
go build ./...
echo "=== Testing Webapp ==="
go test ./...
echo "=== All builds and tests passed ==="
2026-04-21T18:50:45.704237+00:00 === Building API ===
2026-04-21T18:50:45.765909+00:00 go: downloading github.com/sirupsen/logrus v1.9.3
2026-04-21T18:50:45.766064+00:00 go: downloading github.com/rs/cors v1.11.1
2026-04-21T18:50:45.766103+00:00 go: downloading github.com/jackc/pgx/v4 v4.18.3
2026-04-21T18:50:45.768598+00:00 go: downloading gorm.io/driver/postgres v1.5.11
2026-04-21T18:50:45.772287+00:00 go: downloading gorm.io/gorm v1.25.12
2026-04-21T18:50:45.772936+00:00 go: downloading github.com/pressly/goose/v3 v3.24.1
2026-04-21T18:50:46.031907+00:00 go: downloading github.com/jackc/pgx/v5 v5.7.1
2026-04-21T18:50:46.085374+00:00 go: downloading golang.org/x/sys v0.28.0
2026-04-21T18:50:46.129909+00:00 go: downloading github.com/jackc/pgio v1.0.0
2026-04-21T18:50:46.129961+00:00 go: downloading github.com/jackc/pgconn v1.14.3
2026-04-21T18:50:46.130119+00:00 go: downloading github.com/jackc/pgproto3/v2 v2.3.3
2026-04-21T18:50:46.130200+00:00 go: downloading github.com/jackc/pgtype v1.14.0
2026-04-21T18:50:46.153041+00:00 go: downloading github.com/jackc/puddle v1.3.0
2026-04-21T18:50:46.193809+00:00 go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
2026-04-21T18:50:46.193956+00:00 go: downloading github.com/jackc/pgpassfile v1.0.0
2026-04-21T18:50:46.193984+00:00 go: downloading github.com/jackc/chunkreader/v2 v2.0.1
2026-04-21T18:50:46.215599+00:00 go: downloading golang.org/x/crypto v0.31.0
2026-04-21T18:50:46.217469+00:00 go: downloading golang.org/x/text v0.21.0
2026-04-21T18:50:46.222587+00:00 go: downloading github.com/sethvargo/go-retry v0.3.0
2026-04-21T18:50:46.222752+00:00 go: downloading go.uber.org/multierr v1.11.0
2026-04-21T18:50:46.236295+00:00 go: downloading github.com/mfridman/interpolate v0.0.2
2026-04-21T18:50:46.279028+00:00 go: downloading golang.org/x/sync v0.10.0
2026-04-21T18:50:46.281069+00:00 go: downloading github.com/jinzhu/inflection v1.0.0
2026-04-21T18:50:46.281318+00:00 go: downloading github.com/jinzhu/now v1.1.5
2026-04-21T18:50:46.405601+00:00 go: downloading github.com/jackc/puddle/v2 v2.2.2
2026-04-21T18:51:08.883358+00:00 === Testing API ===
2026-04-21T18:51:12.874200+00:00 ? github.com/catalystcommunity/longhouse/api [no test files]
2026-04-21T18:51:12.874294+00:00 ? github.com/catalystcommunity/longhouse/api/cmd [no test files]
2026-04-21T18:51:12.874313+00:00 ? github.com/catalystcommunity/longhouse/api/internal/auth [no test files]
2026-04-21T18:51:12.874330+00:00 ? github.com/catalystcommunity/longhouse/api/internal/config [no test files]
2026-04-21T18:51:12.874388+00:00 ? github.com/catalystcommunity/longhouse/api/internal/handlers [no test files]
2026-04-21T18:51:12.874436+00:00 ? github.com/catalystcommunity/longhouse/api/internal/store [no test files]
2026-04-21T18:51:12.874449+00:00 ? github.com/catalystcommunity/longhouse/api/internal/store/postgres [no test files]
2026-04-21T18:51:12.874461+00:00 ? github.com/catalystcommunity/longhouse/api/internal/store/postgres/models [no test files]
2026-04-21T18:51:12.874473+00:00 ? github.com/catalystcommunity/longhouse/api/internal/tcp [no test files]
2026-04-21T18:51:12.943646+00:00 === Building Webapp ===
2026-04-21T18:51:12.996435+00:00 go: downloading golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8
2026-04-21T18:51:17.281075+00:00 === Testing Webapp ===
2026-04-21T18:51:18.257608+00:00 ? github.com/catalystcommunity/longhouse/webapp [no test files]
2026-04-21T18:51:18.257674+00:00 ? github.com/catalystcommunity/longhouse/webapp/cmd [no test files]
2026-04-21T18:51:18.257689+00:00 ? github.com/catalystcommunity/longhouse/webapp/internal/handlers [no test files]
2026-04-21T18:51:18.257703+00:00 ? github.com/catalystcommunity/longhouse/webapp/internal/config [no test files]
2026-04-21T18:51:18.257758+00:00 ? github.com/catalystcommunity/longhouse/webapp/internal/templates [no test files]
2026-04-21T18:51:18.290938+00:00 === All builds and tests passed ===
2026-04-21T18:51:18.291501+00:00 ✓ Job completed successfully (exit code: 0)