Some checks are pending
CI / POS (WPF, Windows) (push) Waiting to run
CI / Backend (.NET 8) (push) Successful in 35s
CI / Web (React + Vite) (push) Successful in 24s
Docker Images / API image (push) Successful in 6s
Docker Images / Web image (push) Successful in 5s
Docker Images / Deploy stage (push) Successful in 29s
Any block on mcr.microsoft.com or docker.io from KZ would stall our
builds. Mirror docker base images into 127.0.0.1:5001 under mirror/*
via daily systemd timer, and point Dockerfiles + compose + CI at the
local copies.
Mirror:
node:20-alpine → 127.0.0.1:5001/mirror/node:20-alpine
nginx:1.27-alpine → 127.0.0.1:5001/mirror/nginx:1.27-alpine
postgres:16-alpine → 127.0.0.1:5001/mirror/postgres:16-alpine
mcr.microsoft.com/dotnet/sdk:8.0 → 127.0.0.1:5001/mirror/dotnet-sdk:8.0
mcr.microsoft.com/dotnet/aspnet:8.0 → 127.0.0.1:5001/mirror/dotnet-aspnet:8.0
Infra (committed for reproducibility):
- deploy/mirror-base-images.sh — pull/tag/push (idempotent)
- deploy/food-market-mirror-base-images.{service,timer} — daily refresh,
installed on stage server
Usage in build-time:
- Dockerfile.api/web take ARG LOCAL_REGISTRY=127.0.0.1:5001 with the local
copy as default, so the same Dockerfile still builds from docker.io if
you pass --build-arg LOCAL_REGISTRY=docker.io (well, almost).
- docker-compose.yml postgres: image via ${REGISTRY}/mirror/postgres.
- ci.yml postgres service container: local mirror.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
83 lines
2.3 KiB
YAML
83 lines
2.3 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
tags: ['v*']
|
|
pull_request:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
backend:
|
|
name: Backend (.NET 8)
|
|
runs-on: [self-hosted, linux]
|
|
services:
|
|
postgres:
|
|
image: 127.0.0.1:5001/mirror/postgres:16-alpine
|
|
env:
|
|
POSTGRES_DB: food_market_test
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
options: >-
|
|
--health-cmd "pg_isready -U postgres"
|
|
--health-interval 10s
|
|
--health-timeout 5s
|
|
--health-retries 5
|
|
ports:
|
|
- 5441:5432
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# dotnet 8 SDK is pre-installed on the self-hosted runner host.
|
|
- name: Dotnet version
|
|
run: dotnet --version
|
|
|
|
- name: Restore
|
|
run: dotnet restore food-market.sln
|
|
|
|
- name: Build
|
|
run: dotnet build food-market.sln --no-restore -c Release
|
|
|
|
- name: Test
|
|
env:
|
|
ConnectionStrings__Default: Host=localhost;Port=5441;Database=food_market_test;Username=postgres;Password=postgres
|
|
run: dotnet test food-market.sln --no-build -c Release --verbosity normal || echo "No tests yet"
|
|
|
|
web:
|
|
name: Web (React + Vite)
|
|
runs-on: [self-hosted, linux]
|
|
defaults:
|
|
run:
|
|
working-directory: src/food-market.web
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
# node 20 + pnpm are pre-installed on the self-hosted runner host.
|
|
- name: Node + pnpm version
|
|
run: node --version && pnpm --version
|
|
|
|
- name: Install
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build (tsc + vite)
|
|
run: pnpm build
|
|
|
|
# POS build requires Windows — no Forgejo runner for it; skipped silently.
|
|
pos:
|
|
name: POS (WPF, Windows)
|
|
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch'
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build POS
|
|
run: |
|
|
dotnet restore src/food-market.pos/food-market.pos.csproj
|
|
dotnet build src/food-market.pos/food-market.pos.csproj --no-restore -c Release
|
|
dotnet publish src/food-market.pos/food-market.pos.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o publish
|
|
|