temporarily enable full CI pipeline
Some checks failed
Podman Rootless Demo / test-backend (push) Failing after 6m3s
Podman Rootless Demo / test-frontend (push) Has been skipped
Podman Rootless Demo / build-backend (push) Has been skipped
Podman Rootless Demo / build-frontend (push) Has been skipped
Podman Rootless Demo / deploy-prod (push) Has been skipped

This commit is contained in:
continuist 2025-09-21 11:47:13 -04:00
parent db3bc36b34
commit 870dcd3b1c

View file

@ -4,7 +4,7 @@ on: [push, pull_request]
jobs: jobs:
test-backend: test-backend:
runs-on: [ci] runs-on: [ci]
if: false # 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,8 +128,8 @@ jobs:
test-frontend: test-frontend:
runs-on: [ci] runs-on: [ci]
if: false # if: false
#needs: test-backend needs: test-backend
steps: steps:
- name: Checkout code - name: Checkout code
@ -140,9 +140,9 @@ jobs:
build-backend: build-backend:
runs-on: [ci] runs-on: [ci]
if: false # if: false
#needs: [test-backend, test-frontend] needs: [test-backend, test-frontend]
needs: [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
@ -176,9 +176,9 @@ jobs:
build-frontend: build-frontend:
runs-on: [ci] runs-on: [ci]
if: false # if: false
#needs: [test-backend, test-frontend] needs: [test-backend, test-frontend]
needs: [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
@ -213,7 +213,7 @@ jobs:
deploy-prod: deploy-prod:
runs-on: [prod] runs-on: [prod]
# needs: [build-frontend] # needs: [build-frontend]
#needs: [build-backend, build-frontend] needs: [build-backend, build-frontend]
env: env:
CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock CONTAINER_HOST: unix:///run/user/1001/podman/podman.sock