Allow other stages to run
This commit is contained in:
parent
ab250fc915
commit
e4b276f8ae
1 changed files with 6 additions and 4 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue