[FA-11] Test pipelines
Some checks failed
Build Gateway / build-gateway (pull_request) Has been cancelled
Build Subgraphs / build-subgraphs (map[name:novel-service project:FictionArchive.Service.NovelService subgraph:Novel]) (pull_request) Has been cancelled
Build Subgraphs / build-subgraphs (map[name:scheduler-service project:FictionArchive.Service.SchedulerService subgraph:Scheduler]) (pull_request) Has been cancelled
Build Subgraphs / build-subgraphs (map[name:translation-service project:FictionArchive.Service.TranslationService subgraph:Translation]) (pull_request) Has been cancelled
Build Subgraphs / build-subgraphs (map[name:user-service project:FictionArchive.Service.UserService subgraph:User]) (pull_request) Has been cancelled
Build Subgraphs / trigger-gateway (pull_request) Has been cancelled
Build Subgraphs / build-subgraphs (map[name:file-service project:FictionArchive.Service.FileService subgraph:File]) (pull_request) Has been cancelled
CI / build-backend (pull_request) Successful in 58s
CI / build-frontend (pull_request) Successful in 27s
Release / build-and-push (map[dockerfile:FictionArchive.API/Dockerfile name:api]) (pull_request) Failing after 1m37s
Release / build-and-push (map[dockerfile:FictionArchive.Service.AuthenticationService/Dockerfile name:authentication-service]) (pull_request) Failing after 19s
Release / build-and-push (map[dockerfile:FictionArchive.Service.FileService/Dockerfile name:file-service]) (pull_request) Failing after 20s
Release / build-and-push (map[dockerfile:FictionArchive.Service.NovelService/Dockerfile name:novel-service]) (pull_request) Failing after 20s
Release / build-and-push (map[dockerfile:FictionArchive.Service.SchedulerService/Dockerfile name:scheduler-service]) (pull_request) Failing after 19s
Release / build-and-push (map[dockerfile:FictionArchive.Service.TranslationService/Dockerfile name:translation-service]) (pull_request) Failing after 19s
Release / build-and-push (map[dockerfile:FictionArchive.Service.UserService/Dockerfile name:user-service]) (pull_request) Failing after 19s
Release / build-frontend (pull_request) Failing after 19s

This commit is contained in:
gamer147
2025-11-26 11:37:05 -05:00
parent 80aac63f7d
commit 6ebfe81ae3
3 changed files with 15 additions and 1 deletions

View File

@@ -7,6 +7,11 @@ on:
- master - master
paths: paths:
- 'FictionArchive.API/**' - 'FictionArchive.API/**'
pull_request:
branches:
- master
paths:
- 'FictionArchive.API/**'
env: env:
REGISTRY: ${{ gitea.server_url }} REGISTRY: ${{ gitea.server_url }}

View File

@@ -1,7 +1,6 @@
name: Build Subgraphs name: Build Subgraphs
on: on:
workflow_dispatch:
push: push:
branches: branches:
- master - master
@@ -9,6 +8,13 @@ on:
- 'FictionArchive.Service.*/**' - 'FictionArchive.Service.*/**'
- 'FictionArchive.Common/**' - 'FictionArchive.Common/**'
- 'FictionArchive.Service.Shared/**' - 'FictionArchive.Service.Shared/**'
pull_request:
branches:
- master
paths:
- 'FictionArchive.Service.*/**'
- 'FictionArchive.Common/**'
- 'FictionArchive.Service.Shared/**'
jobs: jobs:
build-subgraphs: build-subgraphs:

View File

@@ -4,6 +4,9 @@ on:
push: push:
tags: tags:
- 'v*.*.*' - 'v*.*.*'
pull_request:
branches:
- master
env: env:
REGISTRY: ${{ gitea.server_url }} REGISTRY: ${{ gitea.server_url }}