Files
mev-beta/orig/.harness/pipeline.yaml
Administrator c54c569f30 refactor: move all remaining files to orig/ directory
Completed clean root directory structure:
- Root now contains only: .git, .env, docs/, orig/
- Moved all remaining files and directories to orig/:
  - Config files (.claude, .dockerignore, .drone.yml, etc.)
  - All .env variants (except active .env)
  - Git config (.gitconfig, .github, .gitignore, etc.)
  - Tool configs (.golangci.yml, .revive.toml, etc.)
  - Documentation (*.md files, @prompts)
  - Build files (Dockerfiles, Makefile, go.mod, go.sum)
  - Docker compose files
  - All source directories (scripts, tests, tools, etc.)
  - Runtime directories (logs, monitoring, reports)
  - Dependency files (node_modules, lib, cache)
  - Special files (--delete)

- Removed empty runtime directories (bin/, data/)

V2 structure is now clean:
- docs/planning/ - V2 planning documents
- orig/ - Complete V1 codebase preserved
- .env - Active environment config (not in git)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-10 10:53:05 +01:00

65 lines
2.0 KiB
YAML

pipeline:
name: LocalOrgPipeline
identifier: LocalOrgPipeline
projectIdentifier: InternalProject
orgIdentifier: Default
stages:
- stage:
name: BuildAndTest
identifier: BuildAndTest
type: CI
spec:
execution:
steps:
- step:
type: Run
name: Lint
spec:
image: golang:1.25
command: goimports -w .
- step:
type: Run
name: Vet
spec:
image: golang:1.25
command: go vet ./...
- step:
type: Run
name: Test
spec:
image: golang:1.25
command: go test ./... -v -race
- step:
type: Run
name: Build Bridge
spec:
image: golang:1.25
command: |
cd tools && go build -o ../ci-agent-bridge ci_agent_bridge.go
- step:
type: Run
name: Summarize Artifacts
spec:
image: golang:1.25
command: ./ci-agent-bridge summarize --artifacts ./artifacts --out summary.json
- stage:
name: Deploy
identifier: Deploy
type: CD
spec:
serviceConfig:
serviceDefinition:
type: Kubernetes
spec:
manifests:
- manifest:
identifier: k8sDeployment
type: K8sManifest
spec:
store:
type: Git
spec:
connectorRef: gitConnector
repoName: internal-repo
branch: main
path: manifests/deployment.yaml