Попробую протестировать первый сборочный блок.
Some checks reported errors
continuous-integration/drone/push Build encountered an error
Some checks reported errors
continuous-integration/drone/push Build encountered an error
This commit is contained in:
parent
40301b263e
commit
c1a043c6eb
633
.drone.yml
633
.drone.yml
@ -1,33 +1,419 @@
|
|||||||
---
|
---
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
# 🧪 Pipeline 1: Feature Branch Validation
|
||||||
|
# Trigger: Push to feature/* or fix/* branches
|
||||||
|
# Purpose: Fast feedback for developers - build and test only
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: Nocr (Kaniko)
|
name: feature-validation
|
||||||
|
|
||||||
metadata:
|
metadata:
|
||||||
namespace: musk-drone
|
namespace: musk-drone
|
||||||
|
|
||||||
trigger:
|
trigger:
|
||||||
ref:
|
ref:
|
||||||
- refs/tags/*
|
- refs/heads/feature/*
|
||||||
#- refs/heads/main
|
- refs/heads/issues/*
|
||||||
|
- refs/heads/fix/*
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
clone:
|
clone:
|
||||||
disable: true
|
disable: true
|
||||||
|
|
||||||
steps:
|
# Service container for Testcontainers
|
||||||
|
services:
|
||||||
|
- name: docker
|
||||||
|
image: docker:27-dind
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
temp: {}
|
||||||
|
- name: nuget-cache
|
||||||
|
temp: {}
|
||||||
|
|
||||||
|
steps:
|
||||||
- name: clone
|
- name: clone
|
||||||
image: alpine/git
|
image: alpine/git
|
||||||
commands:
|
commands:
|
||||||
- git clone https://gitea.musk.fun/nocr/flea
|
- git clone https://gitea.musk.fun/nocr/flea
|
||||||
- cd flea
|
- cd flea
|
||||||
|
- git checkout $DRONE_COMMIT
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
# 🐋 Kaniko steps with caching enabled
|
- name: dotnet-restore
|
||||||
# 🚀 Optimized: 3 parallel build streams
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
#
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
- echo "🔄 Restoring all projects..."
|
||||||
|
- dotnet restore telegram-listener/Nocr.TelegramListener.sln
|
||||||
|
- dotnet restore telegram-client/Nocr.TelegramClient.sln
|
||||||
|
- dotnet restore text-matcher/Nocr.TextMatcher.sln
|
||||||
|
- dotnet restore users/Nocr.Users.sln
|
||||||
|
depends_on:
|
||||||
|
- clone
|
||||||
|
|
||||||
|
- name: dotnet-build
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- echo "🔨 Building all projects..."
|
||||||
|
- dotnet build telegram-listener/Nocr.TelegramListener.sln --no-restore -c Debug
|
||||||
|
- dotnet build telegram-client/Nocr.TelegramClient.sln --no-restore -c Debug
|
||||||
|
- dotnet build text-matcher/Nocr.TextMatcher.sln --no-restore -c Debug
|
||||||
|
- dotnet build users/Nocr.Users.sln --no-restore -c Debug
|
||||||
|
depends_on:
|
||||||
|
- dotnet-restore
|
||||||
|
|
||||||
|
- name: dotnet-test
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: unix:///var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- echo "🧪 Running tests..."
|
||||||
|
- dotnet test text-matcher/Nocr.TextMatcher.sln --no-build -c Debug --logger trx --results-directory ./test-results
|
||||||
|
- echo "✅ Tests completed"
|
||||||
|
depends_on:
|
||||||
|
- dotnet-build
|
||||||
|
- docker
|
||||||
|
|
||||||
|
---
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
# 📝 Pipeline 2: Main Branch Validation
|
||||||
|
# Trigger: Push to main branch
|
||||||
|
# Purpose: Validate main branch after merge
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: main-validation
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
namespace: musk-drone
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
ref:
|
||||||
|
- refs/heads/main
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
services:
|
||||||
|
- name: docker
|
||||||
|
image: docker:27-dind
|
||||||
|
privileged: true
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: dockersock
|
||||||
|
temp: {}
|
||||||
|
- name: nuget-cache
|
||||||
|
temp: {}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git clone https://gitea.musk.fun/nocr/flea
|
||||||
|
- cd flea
|
||||||
|
- git checkout $DRONE_COMMIT
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
|
- name: dotnet-restore
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
- dotnet restore telegram-listener/Nocr.TelegramListener.sln
|
||||||
|
- dotnet restore telegram-client/Nocr.TelegramClient.sln
|
||||||
|
- dotnet restore text-matcher/Nocr.TextMatcher.sln
|
||||||
|
- dotnet restore users/Nocr.Users.sln
|
||||||
|
depends_on:
|
||||||
|
- clone
|
||||||
|
|
||||||
|
- name: dotnet-build
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet build telegram-listener/Nocr.TelegramListener.sln --no-restore -c Release
|
||||||
|
- dotnet build telegram-client/Nocr.TelegramClient.sln --no-restore -c Release
|
||||||
|
- dotnet build text-matcher/Nocr.TextMatcher.sln --no-restore -c Release
|
||||||
|
- dotnet build users/Nocr.Users.sln --no-restore -c Release
|
||||||
|
depends_on:
|
||||||
|
- dotnet-restore
|
||||||
|
|
||||||
|
- name: dotnet-test
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
- name: dockersock
|
||||||
|
path: /var/run
|
||||||
|
environment:
|
||||||
|
DOCKER_HOST: unix:///var/run/docker.sock
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet test text-matcher/Nocr.TextMatcher.sln --no-build -c Release --logger trx --results-directory ./test-results
|
||||||
|
depends_on:
|
||||||
|
- dotnet-build
|
||||||
|
- docker
|
||||||
|
|
||||||
|
---
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
# 📦 Pipeline 3: Contracts-Only Publish
|
||||||
|
# Trigger: Tag with commit message containing "contracts_only:<service>"
|
||||||
|
# Purpose: Fast publish of contract packages without building images
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: contracts-publish
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
namespace: musk-drone
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
temp: {}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git clone https://gitea.musk.fun/nocr/flea
|
||||||
|
- cd flea
|
||||||
|
- git checkout $DRONE_TAG
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
|
- name: check-trigger
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
||||||
|
- echo "Commit message':' $COMMIT_MSG"
|
||||||
|
- |
|
||||||
|
if echo "$COMMIT_MSG" | grep -q "contracts_only:"; then
|
||||||
|
echo "✅ contracts_only detected, proceeding..."
|
||||||
|
exit 0
|
||||||
|
else
|
||||||
|
echo "⏭️ No contracts_only marker, skipping..."
|
||||||
|
exit 78
|
||||||
|
fi
|
||||||
|
depends_on:
|
||||||
|
- clone
|
||||||
|
|
||||||
|
- name: telegram-listener-contracts
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
environment:
|
||||||
|
NUGETAPIKEY:
|
||||||
|
from_secret: nuget_musk_api_key
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
||||||
|
- |
|
||||||
|
if echo "$COMMIT_MSG" | grep -q "contracts_only:telegram_listener"; then
|
||||||
|
echo "📦 Publishing telegram-listener contracts..."
|
||||||
|
dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
dotnet pack telegram-listener/Nocr.TelegramListener.sln -o ./bin -p:PackageVersion=${DRONE_TAG}
|
||||||
|
dotnet nuget push ./bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
||||||
|
else
|
||||||
|
echo "⏭️ Skipping telegram-listener contracts"
|
||||||
|
fi
|
||||||
|
depends_on:
|
||||||
|
- check-trigger
|
||||||
|
|
||||||
|
- name: text-matcher-contracts
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
environment:
|
||||||
|
NUGETAPIKEY:
|
||||||
|
from_secret: nuget_musk_api_key
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
||||||
|
- |
|
||||||
|
if echo "$COMMIT_MSG" | grep -q "contracts_only:text_matcher"; then
|
||||||
|
echo "📦 Publishing text-matcher contracts..."
|
||||||
|
dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
dotnet pack text-matcher/Nocr.TextMatcher.sln -o ./bin -p:PackageVersion=${DRONE_TAG}
|
||||||
|
dotnet nuget push ./bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
||||||
|
else
|
||||||
|
echo "⏭️ Skipping text-matcher contracts"
|
||||||
|
fi
|
||||||
|
depends_on:
|
||||||
|
- check-trigger
|
||||||
|
|
||||||
|
- name: users-contracts
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
environment:
|
||||||
|
NUGETAPIKEY:
|
||||||
|
from_secret: nuget_musk_api_key
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
||||||
|
- |
|
||||||
|
if echo "$COMMIT_MSG" | grep -q "contracts_only:users"; then
|
||||||
|
echo "📦 Publishing users contracts..."
|
||||||
|
dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
dotnet pack users/Nocr.Users.sln -o ./bin -p:PackageVersion=${DRONE_TAG}
|
||||||
|
dotnet nuget push ./bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
||||||
|
else
|
||||||
|
echo "⏭️ Skipping users contracts"
|
||||||
|
fi
|
||||||
|
depends_on:
|
||||||
|
- check-trigger
|
||||||
|
|
||||||
|
---
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
# 🚀 Pipeline 4: Full Release
|
||||||
|
# Trigger: Tag on main branch WITHOUT "contracts_only" or "deploy_only"
|
||||||
|
# Purpose: Full release cycle - contracts → images → optional deploy
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
kind: pipeline
|
||||||
|
type: kubernetes
|
||||||
|
name: full-release
|
||||||
|
|
||||||
|
metadata:
|
||||||
|
namespace: musk-drone
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
ref:
|
||||||
|
- refs/tags/*
|
||||||
|
event:
|
||||||
|
- tag
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
|
||||||
|
clone:
|
||||||
|
disable: true
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
temp: {}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: clone
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- git clone https://gitea.musk.fun/nocr/flea
|
||||||
|
- cd flea
|
||||||
|
- git checkout $DRONE_TAG
|
||||||
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
|
- name: check-trigger
|
||||||
|
image: alpine/git
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
||||||
|
- echo "Commit message':' $COMMIT_MSG"
|
||||||
|
- |
|
||||||
|
if echo "$COMMIT_MSG" | grep -qE "contracts_only:|deploy_only:"; then
|
||||||
|
echo "⏭️ contracts_only or deploy_only detected, skipping full release..."
|
||||||
|
exit 78
|
||||||
|
else
|
||||||
|
echo "✅ Full release triggered"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
depends_on:
|
||||||
|
- clone
|
||||||
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
# 🔵 Stream 1: telegram-listener → telegram-client
|
# STAGE 1: Publish NuGet Contracts (parallel)
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
|
||||||
|
- name: telegram-listener-nuget
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
environment:
|
||||||
|
NUGETAPIKEY:
|
||||||
|
from_secret: nuget_musk_api_key
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
- dotnet pack telegram-listener/Nocr.TelegramListener.sln -o ./bin -p:PackageVersion=${DRONE_TAG}
|
||||||
|
- dotnet nuget push ./bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
||||||
|
depends_on:
|
||||||
|
- check-trigger
|
||||||
|
|
||||||
|
- name: text-matcher-nuget
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
environment:
|
||||||
|
NUGETAPIKEY:
|
||||||
|
from_secret: nuget_musk_api_key
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
- dotnet pack text-matcher/Nocr.TextMatcher.sln -o ./bin -p:PackageVersion=${DRONE_TAG}
|
||||||
|
- dotnet nuget push ./bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
||||||
|
depends_on:
|
||||||
|
- check-trigger
|
||||||
|
|
||||||
|
- name: users-nuget
|
||||||
|
image: mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
volumes:
|
||||||
|
- name: nuget-cache
|
||||||
|
path: /root/.nuget/packages
|
||||||
|
environment:
|
||||||
|
NUGETAPIKEY:
|
||||||
|
from_secret: nuget_musk_api_key
|
||||||
|
commands:
|
||||||
|
- cd flea
|
||||||
|
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
||||||
|
- dotnet pack users/Nocr.Users.sln -o ./bin -p:PackageVersion=${DRONE_TAG}
|
||||||
|
- dotnet nuget push ./bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
||||||
|
depends_on:
|
||||||
|
- check-trigger
|
||||||
|
|
||||||
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
# STAGE 2: Build Docker Images with Kaniko (3 parallel streams)
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
|
||||||
- name: telegram-listener-build-push
|
- name: telegram-listener-build-push
|
||||||
@ -45,13 +431,15 @@ steps:
|
|||||||
--context=.
|
--context=.
|
||||||
--dockerfile=src/Nocr.TelegramListener.Host/Dockerfile
|
--dockerfile=src/Nocr.TelegramListener.Host/Dockerfile
|
||||||
--destination=hub.musk.fun/k8s/nocr/telegram_listener:${DRONE_COMMIT_SHA:0:7}
|
--destination=hub.musk.fun/k8s/nocr/telegram_listener:${DRONE_COMMIT_SHA:0:7}
|
||||||
|
--destination=hub.musk.fun/k8s/nocr/telegram_listener:${DRONE_TAG}
|
||||||
--destination=hub.musk.fun/k8s/nocr/telegram_listener:latest
|
--destination=hub.musk.fun/k8s/nocr/telegram_listener:latest
|
||||||
--cache=true
|
--cache=true
|
||||||
--cache-repo=hub.musk.fun/k8s/cache/nocr-telegram-listener
|
--cache-repo=hub.musk.fun/k8s/cache/nocr-telegram-listener
|
||||||
--compressed-caching=true
|
--compressed-caching=true
|
||||||
--verbosity=info
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- clone
|
- telegram-listener-nuget
|
||||||
|
- text-matcher-nuget
|
||||||
|
- users-nuget
|
||||||
|
|
||||||
- name: telegram-client-build-push
|
- name: telegram-client-build-push
|
||||||
image: gcr.io/kaniko-project/executor:debug
|
image: gcr.io/kaniko-project/executor:debug
|
||||||
@ -68,18 +456,14 @@ steps:
|
|||||||
--context=.
|
--context=.
|
||||||
--dockerfile=src/Nocr.TelegramClient.Host/Dockerfile
|
--dockerfile=src/Nocr.TelegramClient.Host/Dockerfile
|
||||||
--destination=hub.musk.fun/k8s/nocr/telegram_client:${DRONE_COMMIT_SHA:0:7}
|
--destination=hub.musk.fun/k8s/nocr/telegram_client:${DRONE_COMMIT_SHA:0:7}
|
||||||
|
--destination=hub.musk.fun/k8s/nocr/telegram_client:${DRONE_TAG}
|
||||||
--destination=hub.musk.fun/k8s/nocr/telegram_client:latest
|
--destination=hub.musk.fun/k8s/nocr/telegram_client:latest
|
||||||
--cache=true
|
--cache=true
|
||||||
--cache-repo=hub.musk.fun/k8s/cache/nocr-telegram-client
|
--cache-repo=hub.musk.fun/k8s/cache/nocr-telegram-client
|
||||||
--compressed-caching=true
|
--compressed-caching=true
|
||||||
--verbosity=info
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- telegram-listener-build-push
|
- telegram-listener-build-push
|
||||||
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
# 🟢 Stream 2: text-matcher → text-matcher-migrator
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
|
|
||||||
- name: text-matcher-build-push
|
- name: text-matcher-build-push
|
||||||
image: gcr.io/kaniko-project/executor:debug
|
image: gcr.io/kaniko-project/executor:debug
|
||||||
environment:
|
environment:
|
||||||
@ -95,13 +479,15 @@ steps:
|
|||||||
--context=.
|
--context=.
|
||||||
--dockerfile=src/Nocr.TextMatcher.Host/Dockerfile
|
--dockerfile=src/Nocr.TextMatcher.Host/Dockerfile
|
||||||
--destination=hub.musk.fun/k8s/nocr/text_matcher:${DRONE_COMMIT_SHA:0:7}
|
--destination=hub.musk.fun/k8s/nocr/text_matcher:${DRONE_COMMIT_SHA:0:7}
|
||||||
|
--destination=hub.musk.fun/k8s/nocr/text_matcher:${DRONE_TAG}
|
||||||
--destination=hub.musk.fun/k8s/nocr/text_matcher:latest
|
--destination=hub.musk.fun/k8s/nocr/text_matcher:latest
|
||||||
--cache=true
|
--cache=true
|
||||||
--cache-repo=hub.musk.fun/k8s/cache/nocr-text-matcher
|
--cache-repo=hub.musk.fun/k8s/cache/nocr-text-matcher
|
||||||
--compressed-caching=true
|
--compressed-caching=true
|
||||||
--verbosity=info
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- clone
|
- telegram-listener-nuget
|
||||||
|
- text-matcher-nuget
|
||||||
|
- users-nuget
|
||||||
|
|
||||||
- name: text-matcher-migrator-build-push
|
- name: text-matcher-migrator-build-push
|
||||||
image: gcr.io/kaniko-project/executor:debug
|
image: gcr.io/kaniko-project/executor:debug
|
||||||
@ -118,18 +504,14 @@ steps:
|
|||||||
--context=.
|
--context=.
|
||||||
--dockerfile=src/Nocr.TextMatcher.Migrator/Dockerfile
|
--dockerfile=src/Nocr.TextMatcher.Migrator/Dockerfile
|
||||||
--destination=hub.musk.fun/k8s/nocr/text_matcher_migrator:${DRONE_COMMIT_SHA:0:7}
|
--destination=hub.musk.fun/k8s/nocr/text_matcher_migrator:${DRONE_COMMIT_SHA:0:7}
|
||||||
|
--destination=hub.musk.fun/k8s/nocr/text_matcher_migrator:${DRONE_TAG}
|
||||||
--destination=hub.musk.fun/k8s/nocr/text_matcher_migrator:latest
|
--destination=hub.musk.fun/k8s/nocr/text_matcher_migrator:latest
|
||||||
--cache=true
|
--cache=true
|
||||||
--cache-repo=hub.musk.fun/k8s/cache/nocr-text-matcher-migrator
|
--cache-repo=hub.musk.fun/k8s/cache/nocr-text-matcher-migrator
|
||||||
--compressed-caching=true
|
--compressed-caching=true
|
||||||
--verbosity=info
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- text-matcher-build-push
|
- text-matcher-build-push
|
||||||
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
# 🟡 Stream 3: users → users-migrator
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
|
|
||||||
- name: users-build-push
|
- name: users-build-push
|
||||||
image: gcr.io/kaniko-project/executor:debug
|
image: gcr.io/kaniko-project/executor:debug
|
||||||
environment:
|
environment:
|
||||||
@ -145,13 +527,15 @@ steps:
|
|||||||
--context=.
|
--context=.
|
||||||
--dockerfile=src/Nocr.Users.Host/Dockerfile
|
--dockerfile=src/Nocr.Users.Host/Dockerfile
|
||||||
--destination=hub.musk.fun/k8s/nocr/users:${DRONE_COMMIT_SHA:0:7}
|
--destination=hub.musk.fun/k8s/nocr/users:${DRONE_COMMIT_SHA:0:7}
|
||||||
|
--destination=hub.musk.fun/k8s/nocr/users:${DRONE_TAG}
|
||||||
--destination=hub.musk.fun/k8s/nocr/users:latest
|
--destination=hub.musk.fun/k8s/nocr/users:latest
|
||||||
--cache=true
|
--cache=true
|
||||||
--cache-repo=hub.musk.fun/k8s/cache/nocr-users
|
--cache-repo=hub.musk.fun/k8s/cache/nocr-users
|
||||||
--compressed-caching=true
|
--compressed-caching=true
|
||||||
--verbosity=info
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- clone
|
- telegram-listener-nuget
|
||||||
|
- text-matcher-nuget
|
||||||
|
- users-nuget
|
||||||
|
|
||||||
- name: users-migrator-build-push
|
- name: users-migrator-build-push
|
||||||
image: gcr.io/kaniko-project/executor:debug
|
image: gcr.io/kaniko-project/executor:debug
|
||||||
@ -168,71 +552,41 @@ steps:
|
|||||||
--context=.
|
--context=.
|
||||||
--dockerfile=src/Nocr.Users.Migrator/Dockerfile
|
--dockerfile=src/Nocr.Users.Migrator/Dockerfile
|
||||||
--destination=hub.musk.fun/k8s/nocr/users_migrator:${DRONE_COMMIT_SHA:0:7}
|
--destination=hub.musk.fun/k8s/nocr/users_migrator:${DRONE_COMMIT_SHA:0:7}
|
||||||
|
--destination=hub.musk.fun/k8s/nocr/users_migrator:${DRONE_TAG}
|
||||||
--destination=hub.musk.fun/k8s/nocr/users_migrator:latest
|
--destination=hub.musk.fun/k8s/nocr/users_migrator:latest
|
||||||
--cache=true
|
--cache=true
|
||||||
--cache-repo=hub.musk.fun/k8s/cache/nocr-users-migrator
|
--cache-repo=hub.musk.fun/k8s/cache/nocr-users-migrator
|
||||||
--compressed-caching=true
|
--compressed-caching=true
|
||||||
--verbosity=info
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- users-build-push
|
- users-build-push
|
||||||
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
# 📦 NuGet publishing - 3 parallel streams after all builds complete
|
# STAGE 3: Deploy to Kubernetes (optional, based on tag pattern)
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
|
||||||
- name: telegram-listener-nuget-publish
|
- name: deploy-to-k8s
|
||||||
image: mcr.microsoft.com/dotnet/sdk:8.0
|
image: bitnami/kubectl:latest
|
||||||
environment:
|
|
||||||
VERSION: ${DRONE_TAG}
|
|
||||||
NUGETAPIKEY:
|
|
||||||
from_secret: nuget_musk_api_key
|
|
||||||
commands:
|
commands:
|
||||||
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
- cd flea/_deploy/scripts
|
||||||
- dotnet pack ./flea/telegram-listener/Nocr.TelegramListener.sln -o ./flea/telegram-listener/bin
|
- chmod +x deploy.sh
|
||||||
- dotnet nuget push ./flea/telegram-listener/bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
- ./deploy.sh ${DRONE_TAG} ${DRONE_COMMIT_SHA:0:7}
|
||||||
depends_on:
|
|
||||||
- telegram-client-build-push
|
|
||||||
- text-matcher-migrator-build-push
|
|
||||||
- users-migrator-build-push
|
|
||||||
|
|
||||||
- name: text-matcher-nuget-publish
|
|
||||||
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
||||||
environment:
|
|
||||||
VERSION: ${DRONE_TAG}
|
|
||||||
NUGETAPIKEY:
|
|
||||||
from_secret: nuget_musk_api_key
|
|
||||||
commands:
|
|
||||||
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
|
||||||
- dotnet pack ./flea/text-matcher/Nocr.TextMatcher.sln -o ./flea/text-matcher/bin
|
|
||||||
- dotnet nuget push ./flea/text-matcher/bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
|
||||||
depends_on:
|
|
||||||
- telegram-client-build-push
|
|
||||||
- text-matcher-migrator-build-push
|
|
||||||
- users-migrator-build-push
|
|
||||||
|
|
||||||
- name: users-nuget-publish
|
|
||||||
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
||||||
environment:
|
|
||||||
VERSION: ${DRONE_TAG}
|
|
||||||
NUGETAPIKEY:
|
|
||||||
from_secret: nuget_musk_api_key
|
|
||||||
commands:
|
|
||||||
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
|
||||||
- dotnet pack ./flea/users/Nocr.Users.sln -o ./flea/users/bin
|
|
||||||
- dotnet nuget push ./flea/users/bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- telegram-client-build-push
|
- telegram-client-build-push
|
||||||
- text-matcher-migrator-build-push
|
- text-matcher-migrator-build-push
|
||||||
- users-migrator-build-push
|
- users-migrator-build-push
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/tags/v*
|
||||||
|
|
||||||
---
|
---
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
# 📦 Contracts-only pipeline for telegram-listener
|
# 🚀 Pipeline 5: Deploy-Only
|
||||||
# Trigger: commit message contains "contracts_only:telegram_listener"
|
# Trigger: Tag with commit message containing "deploy_only:"
|
||||||
|
# Purpose: Fast deploy of already-built images
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
kind: pipeline
|
kind: pipeline
|
||||||
type: kubernetes
|
type: kubernetes
|
||||||
name: telegram-listener-contracts-only
|
name: deploy-only
|
||||||
|
|
||||||
metadata:
|
metadata:
|
||||||
namespace: musk-drone
|
namespace: musk-drone
|
||||||
@ -252,152 +606,31 @@ steps:
|
|||||||
commands:
|
commands:
|
||||||
- git clone https://gitea.musk.fun/nocr/flea
|
- git clone https://gitea.musk.fun/nocr/flea
|
||||||
- cd flea
|
- cd flea
|
||||||
|
- git checkout $DRONE_TAG
|
||||||
- git submodule update --init --recursive
|
- git submodule update --init --recursive
|
||||||
|
|
||||||
- name: check-commit-message
|
- name: check-trigger
|
||||||
image: alpine/git
|
image: alpine/git
|
||||||
commands:
|
commands:
|
||||||
- cd flea
|
- cd flea
|
||||||
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
||||||
- echo "Commit message':' $COMMIT_MSG"
|
- echo "Commit message':' $COMMIT_MSG"
|
||||||
- |
|
- |
|
||||||
if echo "$COMMIT_MSG" | grep -q "contracts_only:telegram_listener"; then
|
if echo "$COMMIT_MSG" | grep -q "deploy_only:"; then
|
||||||
echo "✅ Commit message contains 'contracts_only:telegram_listener', proceeding..."
|
echo "✅ deploy_only detected, proceeding..."
|
||||||
exit 0
|
exit 0
|
||||||
else
|
else
|
||||||
echo "❌ Commit message does not contain 'contracts_only:telegram_listener', skipping..."
|
echo "⏭️ No deploy_only marker, skipping..."
|
||||||
exit 78
|
exit 78
|
||||||
fi
|
fi
|
||||||
depends_on:
|
depends_on:
|
||||||
- clone
|
- clone
|
||||||
|
|
||||||
- name: telegram-listener-contracts-publish
|
- name: deploy
|
||||||
image: mcr.microsoft.com/dotnet/sdk:8.0
|
image: bitnami/kubectl:latest
|
||||||
environment:
|
|
||||||
VERSION: ${DRONE_TAG}
|
|
||||||
NUGETAPIKEY:
|
|
||||||
from_secret: nuget_musk_api_key
|
|
||||||
commands:
|
commands:
|
||||||
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
- cd flea/_deploy/scripts
|
||||||
- dotnet pack ./flea/telegram-listener/Nocr.TelegramListener.sln -o ./flea/telegram-listener/bin -p:PackageVersion=${DRONE_TAG}
|
- chmod +x deploy.sh
|
||||||
- dotnet nuget push ./flea/telegram-listener/bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
- ./deploy.sh ${DRONE_TAG} ${DRONE_COMMIT_SHA:0:7}
|
||||||
depends_on:
|
depends_on:
|
||||||
- check-commit-message
|
- check-trigger
|
||||||
|
|
||||||
---
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
# 📦 Contracts-only pipeline for text-matcher
|
|
||||||
# Trigger: commit message contains "contracts_only:text_matcher"
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
kind: pipeline
|
|
||||||
type: kubernetes
|
|
||||||
name: text-matcher-contracts-only
|
|
||||||
|
|
||||||
metadata:
|
|
||||||
namespace: musk-drone
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
ref:
|
|
||||||
- refs/tags/*
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
clone:
|
|
||||||
disable: true
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: clone
|
|
||||||
image: alpine/git
|
|
||||||
commands:
|
|
||||||
- git clone https://gitea.musk.fun/nocr/flea
|
|
||||||
- cd flea
|
|
||||||
- git submodule update --init --recursive
|
|
||||||
|
|
||||||
- name: check-commit-message
|
|
||||||
image: alpine/git
|
|
||||||
commands:
|
|
||||||
- cd flea
|
|
||||||
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
|
||||||
- echo "Commit message':' $COMMIT_MSG"
|
|
||||||
- |
|
|
||||||
if echo "$COMMIT_MSG" | grep -q "contracts_only:text_matcher"; then
|
|
||||||
echo "✅ Commit message contains 'contracts_only:text_matcher', proceeding..."
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
echo "❌ Commit message does not contain 'contracts_only:text_matcher', skipping..."
|
|
||||||
exit 78
|
|
||||||
fi
|
|
||||||
depends_on:
|
|
||||||
- clone
|
|
||||||
|
|
||||||
- name: text-matcher-contracts-publish
|
|
||||||
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
||||||
environment:
|
|
||||||
VERSION: ${DRONE_TAG}
|
|
||||||
NUGETAPIKEY:
|
|
||||||
from_secret: nuget_musk_api_key
|
|
||||||
commands:
|
|
||||||
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
|
||||||
- dotnet pack ./flea/text-matcher/Nocr.TextMatcher.sln -o ./flea/text-matcher/bin -p:PackageVersion=${DRONE_TAG}
|
|
||||||
- dotnet nuget push ./flea/text-matcher/bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
|
||||||
depends_on:
|
|
||||||
- check-commit-message
|
|
||||||
|
|
||||||
---
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
# 📦 Contracts-only pipeline for users
|
|
||||||
# Trigger: commit message contains "contracts_only:users"
|
|
||||||
# ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
||||||
kind: pipeline
|
|
||||||
type: kubernetes
|
|
||||||
name: users-contracts-only
|
|
||||||
|
|
||||||
metadata:
|
|
||||||
namespace: musk-drone
|
|
||||||
|
|
||||||
trigger:
|
|
||||||
ref:
|
|
||||||
- refs/tags/*
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
clone:
|
|
||||||
disable: true
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: clone
|
|
||||||
image: alpine/git
|
|
||||||
commands:
|
|
||||||
- git clone https://gitea.musk.fun/nocr/flea
|
|
||||||
- cd flea
|
|
||||||
- git submodule update --init --recursive
|
|
||||||
|
|
||||||
- name: check-commit-message
|
|
||||||
image: alpine/git
|
|
||||||
commands:
|
|
||||||
- cd flea
|
|
||||||
- COMMIT_MSG=$(git log -1 --pretty=%B)
|
|
||||||
- echo "Commit message':' $COMMIT_MSG"
|
|
||||||
- |
|
|
||||||
if echo "$COMMIT_MSG" | grep -q "contracts_only:users"; then
|
|
||||||
echo "✅ Commit message contains 'contracts_only:users', proceeding..."
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
echo "❌ Commit message does not contain 'contracts_only:users', skipping..."
|
|
||||||
exit 78
|
|
||||||
fi
|
|
||||||
depends_on:
|
|
||||||
- clone
|
|
||||||
|
|
||||||
- name: users-contracts-publish
|
|
||||||
image: mcr.microsoft.com/dotnet/sdk:8.0
|
|
||||||
environment:
|
|
||||||
VERSION: ${DRONE_TAG}
|
|
||||||
NUGETAPIKEY:
|
|
||||||
from_secret: nuget_musk_api_key
|
|
||||||
commands:
|
|
||||||
- dotnet nuget add source --name musk https://gitea.musk.fun/api/packages/nocr/nuget/index.json
|
|
||||||
- dotnet pack ./flea/users/Nocr.Users.sln -o ./flea/users/bin -p:PackageVersion=${DRONE_TAG}
|
|
||||||
- dotnet nuget push ./flea/users/bin/*Contract*.nupkg --api-key $NUGETAPIKEY --source musk --skip-duplicate
|
|
||||||
depends_on:
|
|
||||||
- check-commit-message
|
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@
|
|||||||
!.nocr.env.example
|
!.nocr.env.example
|
||||||
.mono/
|
.mono/
|
||||||
WTelegram.session
|
WTelegram.session
|
||||||
|
.claude/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user