CI workflow fixes #3
Some checks failed
CI/CD Pipeline with Secure Ephemeral PiP / test-backend (push) Failing after 35s
CI/CD Pipeline with Secure Ephemeral PiP / test-frontend (push) Has been skipped
CI/CD Pipeline with Secure Ephemeral PiP / build-backend (push) Has been skipped
CI/CD Pipeline with Secure Ephemeral PiP / build-frontend (push) Has been skipped
CI/CD Pipeline with Secure Ephemeral PiP / deploy-prod (push) Has been skipped

This commit is contained in:
continuist 2025-09-12 20:43:52 -04:00
parent 089b4ff7e2
commit abad30d045

View file

@ -28,7 +28,9 @@ env:
jobs: jobs:
test-backend: test-backend:
runs-on: [ci] runs-on: [ci]
env:
XDG_RUNTIME_DIR: /run/user/999
CONTAINER_HOST: unix:///run/user/999/podman/podman.sock
container: container:
image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f
# options: >- # options: >-
@ -138,7 +140,9 @@ jobs:
test-frontend: test-frontend:
runs-on: [ci] runs-on: [ci]
needs: test-backend needs: test-backend
env:
XDG_RUNTIME_DIR: /run/user/999
CONTAINER_HOST: unix:///run/user/999/podman/podman.sock
container: container:
image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f
# options: >- # options: >-
@ -200,7 +204,9 @@ jobs:
build-backend: build-backend:
runs-on: [ci] runs-on: [ci]
needs: test-frontend needs: test-frontend
env:
XDG_RUNTIME_DIR: /run/user/999
CONTAINER_HOST: unix:///run/user/999/podman/podman.sock
container: container:
image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f
# options: >- # options: >-
@ -271,7 +277,9 @@ jobs:
build-frontend: build-frontend:
runs-on: [ci] runs-on: [ci]
needs: test-frontend needs: test-frontend
env:
XDG_RUNTIME_DIR: /run/user/999
CONTAINER_HOST: unix:///run/user/999/podman/podman.sock
container: container:
image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f
# options: >- # options: >-
@ -343,7 +351,9 @@ jobs:
runs-on: [prod] runs-on: [prod]
needs: [build-backend, build-frontend] needs: [build-backend, build-frontend]
if: success() if: success()
env:
XDG_RUNTIME_DIR: /run/user/999
CONTAINER_HOST: unix:///run/user/999/podman/podman.sock
container: container:
image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f image: git.gcdo.org/devteam/sharenet/ci-node-podman@sha256:eb0d942bd9a8cc69c63eb9ccf3877703898d676d0268cf379defdcda7e55f37f
# options: >- # options: >-