Allow other stages to run
Some checks failed
Podman Rootless Demo / test-backend (push) Has been skipped
Podman Rootless Demo / test-frontend (push) Successful in 11s
Podman Rootless Demo / build-backend (push) Successful in 20s
Podman Rootless Demo / build-frontend (push) Failing after 1m2s

This commit is contained in:
continuist 2025-09-20 13:21:34 -04:00
parent ab250fc915
commit e4b276f8ae

View file

@ -4,7 +4,7 @@ on: [push, pull_request]
jobs: jobs:
test-backend: test-backend:
runs-on: [ci] runs-on: [ci]
if: false # Skip backend tests for now if: false
# Point all steps at the host's rootless Podman socket # Point all steps at the host's rootless Podman socket
env: env:
@ -128,7 +128,7 @@ jobs:
test-frontend: test-frontend:
runs-on: [ci] runs-on: [ci]
needs: test-backend #needs: test-backend
steps: steps:
- name: Checkout code - name: Checkout code
@ -139,7 +139,8 @@ jobs:
build-backend: build-backend:
runs-on: [ci] runs-on: [ci]
needs: [test-backend, test-frontend] #needs: [test-backend, test-frontend]
needs: [test-frontend]
env: env:
CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock
@ -173,7 +174,8 @@ jobs:
build-frontend: build-frontend:
runs-on: [ci] runs-on: [ci]
needs: [test-backend, test-frontend] #needs: [test-backend, test-frontend]
needs: [test-frontend]
env: env:
CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock