76 lines
1.8 KiB
YAML
76 lines
1.8 KiB
YAML
# CI/CD Pipeline for sp3-test-1770368381
|
|
# Components will add their build steps below the marker
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
depth: 1
|
|
|
|
steps:
|
|
deps:
|
|
image: golang:1.23
|
|
commands:
|
|
- go work sync
|
|
- |
|
|
for dir in services/*/; do
|
|
if [ -f "$dir/go.mod" ]; then
|
|
(cd "$dir" && go mod tidy)
|
|
fi
|
|
done
|
|
- |
|
|
for dir in workers/*/; do
|
|
if [ -f "$dir/go.mod" ]; then
|
|
(cd "$dir" && go mod tidy)
|
|
fi
|
|
done
|
|
- |
|
|
for dir in cli/*/; do
|
|
if [ -f "$dir/go.mod" ]; then
|
|
(cd "$dir" && go mod tidy)
|
|
fi
|
|
done
|
|
when:
|
|
branch: main
|
|
event: push
|
|
|
|
# COMPONENT_STEPS_BELOW
|
|
|
|
# Woodpecker CI step for chat-api service
|
|
# Add this step to your .woodpecker.yml
|
|
|
|
build-chat-api:
|
|
depends_on: [deps]
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
registry: registry.threesix.ai
|
|
repo: sp3-test-1770368381/chat-api
|
|
tags:
|
|
- latest
|
|
- ${CI_COMMIT_SHA:0:8}
|
|
context: .
|
|
dockerfile: services/chat-api/Dockerfile
|
|
cache: true
|
|
skip-tls-verify: true
|
|
when:
|
|
branch: main
|
|
event: push
|
|
|
|
deploy-chat-api:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- kubectl set image deployment/sp3-test-1770368381-chat-api chat-api=registry.threesix.ai/sp3-test-1770368381/chat-api:${CI_COMMIT_SHA:0:8} -n projects || echo "Deployment not found, skipping"
|
|
when:
|
|
branch: main
|
|
event: push
|
|
# Do not remove the marker above - component steps are inserted here
|
|
|
|
verify:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- echo "Pipeline complete for sp3-test-1770368381"
|
|
- kubectl get deployments -n projects -l app=sp3-test-1770368381 --no-headers || true
|
|
when:
|
|
branch: main
|
|
event: push
|