ci: simpler workflow with self-hosted runners
Some checks failed
build-services / build-jobs (push) Failing after 2s
build-services / build-leads (push) Failing after 3s
build-services / build-cron (push) Failing after 3s
build-services / build-users (push) Failing after 2s
build-services / build-gateway (push) Failing after 4s
build-and-push / detect-changes (push) Successful in 2s
build-all-services / build (push) Failing after 3s
build-and-push / build (catering-services) (push) Failing after 2s
build-and-push / build (companies) (push) Failing after 4s
build-and-push / build (cron) (push) Failing after 3s
build-and-push / build (customers) (push) Failing after 4s
build-and-push / build (developers) (push) Failing after 3s
build-and-push / build (fitness-trainers) (push) Failing after 3s
build-and-push / build (employees) (push) Failing after 4s
build-and-push / build (gateway) (push) Failing after 3s
build-and-push / build (graphic-designers) (push) Failing after 4s
build-and-push / build (job-seekers) (push) Failing after 2s
build-and-push / build (jobs) (push) Failing after 4s
build-and-push / build (leads) (push) Failing after 2s
build-and-push / build (payments) (push) Failing after 2s
build-and-push / build (makeup-artists) (push) Failing after 4s
build-and-push / build (photographers) (push) Failing after 2s
build-and-push / build (social-media-managers) (push) Failing after 4s
build-and-push / build (tutors) (push) Failing after 2s
build-and-push / build (users) (push) Failing after 2s
build-and-push / build (ugc-content-creators) (push) Failing after 4s
build-and-push / build (video-editors) (push) Failing after 2s

This commit is contained in:
Ashwin Kumar Sivakumar 2026-06-13 01:38:16 +05:30
parent f67f6c2514
commit ec41f6dad2

View file

@ -0,0 +1,53 @@
name: build-services
on:
push:
branches:
- main
- high-performance
jobs:
build-gateway:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Build gateway
run: |
docker build -f Dockerfile.simple --build-arg SERVICE_NAME=gateway -t registry.nxtgauge.com/nxtgauge-rust-gateway:latest .
docker push registry.nxtgauge.com/nxtgauge-rust-gateway:latest
build-users:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Build users
run: |
docker build -f Dockerfile.simple --build-arg SERVICE_NAME=users -t registry.nxtgauge.com/nxtgauge-rust-users:latest .
docker push registry.nxtgauge.com/nxtgauge-rust-users:latest
build-jobs:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Build jobs
run: |
docker build -f Dockerfile.simple --build-arg SERVICE_NAME=jobs -t registry.nxtgauge.com/nxtgauge-rust-jobs:latest .
docker push registry.nxtgauge.com/nxtgauge-rust-jobs:latest
build-leads:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Build leads
run: |
docker build -f Dockerfile.simple --build-arg SERVICE_NAME=leads -t registry.nxtgauge.com/nxtgauge-rust-leads:latest .
docker push registry.nxtgauge.com/nxtgauge-rust-leads:latest
build-cron:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- name: Build cron
run: |
docker build -f Dockerfile.simple --build-arg SERVICE_NAME=cron -t registry.nxtgauge.com/nxtgauge-rust-cron:latest .
docker push registry.nxtgauge.com/nxtgauge-rust-cron:latest