From e4b276f8ae9d31903b20b9308baeeb286566a0e7 Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 20 Sep 2025 13:21:34 -0400 Subject: [PATCH] Allow other stages to run --- .forgejo/workflows/ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index cac9986..d556681 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: test-backend: runs-on: [ci] - if: false # Skip backend tests for now + if: false # Point all steps at the host's rootless Podman socket env: @@ -128,7 +128,7 @@ jobs: test-frontend: runs-on: [ci] - needs: test-backend + #needs: test-backend steps: - name: Checkout code @@ -139,7 +139,8 @@ jobs: build-backend: runs-on: [ci] - needs: [test-backend, test-frontend] + #needs: [test-backend, test-frontend] + needs: [test-frontend] env: CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock @@ -173,7 +174,8 @@ jobs: build-frontend: runs-on: [ci] - needs: [test-backend, test-frontend] + #needs: [test-backend, test-frontend] + needs: [test-frontend] env: CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock