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:
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue