summaryrefslogtreecommitdiff
path: root/.github/workflows/bleeding.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/bleeding.yml')
-rw-r--r--.github/workflows/bleeding.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/bleeding.yml b/.github/workflows/bleeding.yml
index 2587d832b..2f1b52156 100644
--- a/.github/workflows/bleeding.yml
+++ b/.github/workflows/bleeding.yml
@@ -39,6 +39,21 @@ jobs:
run: "python scripts/dev/ci/problemmatchers.py py3 ${{ runner.temp }}"
- name: Run tox
run: dbus-run-session tox -e ${{ matrix.testenv }}
+ - name: Gather info
+ id: info
+ run: |
+ echo "date=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT"
+ echo "sha_short=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
+ shell: bash
+ if: failure()
+ - name: Upload screenshots
+ uses: actions/upload-artifact@v4
+ with:
+ name: "end2end-screenshots-${{ steps.info.outputs.date }}-${{ steps.info.outputs.sha_short }}-${{ matrix.image }}"
+ path: |
+ ${{ runner.temp }}/pytest-screenshots/*.png
+ if-no-files-found: ignore
+ if: failure()
irc:
timeout-minutes: 2
continue-on-error: true