Update CI workflow to adjust job dependencies and remove conditional triggers
- Removed `if` conditions for `Tests-E2E-Docker` and `Tests-E2E-Kubernetes` jobs, ensuring they always run. - Updated `Build` job to depend on both E2E test jobs for stricter validation before building.
This commit is contained in:
parent
bec91950c5
commit
4160babc94
1 changed files with 2 additions and 2 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -61,7 +61,7 @@ jobs:
|
||||||
- name: Run Docker Compose E2E tests
|
- name: Run Docker Compose E2E tests
|
||||||
run: |
|
run: |
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
uv run pytest tests_e2e/test_docker_compose.py -v
|
uv run pytest tests_e2e/test_docker_compose.py -sv
|
||||||
|
|
||||||
Tests-E2E-Kubernetes:
|
Tests-E2E-Kubernetes:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -84,7 +84,7 @@ jobs:
|
||||||
- name: Run Kubernetes E2E tests
|
- name: Run Kubernetes E2E tests
|
||||||
run: |
|
run: |
|
||||||
export PATH="$HOME/.local/bin:$PATH"
|
export PATH="$HOME/.local/bin:$PATH"
|
||||||
uv run pytest tests_e2e/test_kubernetes.py -v
|
uv run pytest tests_e2e/test_kubernetes.py -sv
|
||||||
|
|
||||||
Build:
|
Build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue