From 189f4bca603899070b3dbebc30d857a100a02efb Mon Sep 17 00:00:00 2001 From: Ashwin Kumar Sivakumar Date: Sat, 13 Jun 2026 01:44:07 +0530 Subject: [PATCH] ci: test single job with ubuntu-latest --- .forgejo/workflows/build-gateway.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .forgejo/workflows/build-gateway.yaml diff --git a/.forgejo/workflows/build-gateway.yaml b/.forgejo/workflows/build-gateway.yaml new file mode 100644 index 0000000..4e1a580 --- /dev/null +++ b/.forgejo/workflows/build-gateway.yaml @@ -0,0 +1,18 @@ +name: build-gateway + +on: + push: + branches: + - high-performance + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Build + run: | + git clone --depth 1 http://forgejo-http.forgejo.svc.cluster.local:3000/ashwin/nxtgauge-backend-rust.git /tmp/repo + cd /tmp/repo + 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 + rm -rf /tmp/repo