chore: Update CI workflow to use self-hosted runners for Docker builds
Some checks failed
Integration Tests / integration-tests (push) Failing after 23s
Integration Tests / performance-tests (push) Has been skipped

### Summary of Changes
- Changed the runner configuration for all build jobs in the CI workflow from `ubuntu-latest` to `self-hosted`, ensuring that builds utilize self-hosted infrastructure.

### Expected Results
- Improved build performance and resource management by leveraging self-hosted runners, aligning with the project's infrastructure strategy.
This commit is contained in:
GSRN
2025-09-17 23:20:21 +02:00
parent e9ebf31c88
commit bce4eef44b

View File

@@ -15,8 +15,7 @@ env:
jobs: jobs:
# Shared setup job for common steps # Shared setup job for common steps
setup: setup: self-hosted
runs-on: ubuntu-latest
outputs: outputs:
version: ${{ steps.meta.outputs.version }} version: ${{ steps.meta.outputs.version }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
@@ -45,7 +44,7 @@ jobs:
# API Gateway build and push # API Gateway build and push
build-push-api-gateway: build-push-api-gateway:
runs-on: ubuntu-latest runs-on: self-hosted
needs: setup needs: setup
steps: steps:
@@ -75,7 +74,7 @@ jobs:
# Service Adapters build and push # Service Adapters build and push
build-push-service-adapters: build-push-service-adapters:
runs-on: ubuntu-latest runs-on: self-hosted
needs: setup needs: setup
steps: steps:
@@ -105,7 +104,7 @@ jobs:
# API Docs build and push # API Docs build and push
build-push-api-docs: build-push-api-docs:
runs-on: ubuntu-latest runs-on: self-hosted
needs: setup needs: setup
steps: steps:
@@ -135,7 +134,7 @@ jobs:
# Frontend build and push # Frontend build and push
build-push-frontend: build-push-frontend:
runs-on: ubuntu-latest runs-on: self-hosted
needs: setup needs: setup
steps: steps: