Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/ci-testing-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1904,19 +1904,23 @@ jobs:
- name: test
run: ./ci/github/system-testing/e2e.bash test
- name: dump docker logs
if: ${{ failure() }}
id: docker_logs_dump
run: ./ci/github/system-testing/e2e.bash dump_docker_logs
- name: upload docker logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ github.job }}_docker_logs
path: ./tests/e2e/test_failures
- name: upload screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ github.job }}_screenshots
path: tests/e2e/screenshots
- name: upload e2e logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ github.job }}_logs
Expand Down Expand Up @@ -1956,14 +1960,17 @@ jobs:
run: |
./ci/github/system-testing/e2e-playwright.bash test
- name: dump docker logs
if: ${{ failure() }}
id: docker_logs_dump
run: ./ci/github/system-testing/e2e-playwright.bash dump_docker_logs
- name: upload docker logs
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ github.job }}_docker_logs
path: ./tests/e2e-playwright/test_failures
- name: upload tracing if failed
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: ${{ github.job }}_tracing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,4 +325,4 @@ class ComputationalPipelineStatusMessage(RabbitMessageBase, ProjectMessageBase):
run_result: RunningState

def routing_key(self) -> str | None:
return f"{self.project_id}"
return f"{self.project_id}.all_nodes"
Loading