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