Skip to content

Commit

Permalink
ci: expose failure reason
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbsa committed Sep 6, 2023
1 parent f1b2680 commit f2c7240
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/automated-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ jobs:
with:
name: artifacts_${{ matrix.package }}.tar
path: artifacts.tar
- if: failure()
run: |
mkdir -p ./pr-comment-data
echo "build-package" > ./pr-comment-data/failure-reason
echo ${{ matrix.package }} >> ./pr-comment-data/failed-builds
install-and-run-tests:
needs: build-package
runs-on: ubuntu-22.04
Expand Down Expand Up @@ -261,6 +266,10 @@ jobs:
sed -i "s/\"minify\": true,/\"minify\": false,/" /usr/share/etherpad-lite/settings.json
bbb-conf --restart
EOF
- if: failure()
run: |
mkdir -p ./pr-comment-data
echo "bbb-installation" > ./pr-comment-data/failure-reason
- name: Install test dependencies
working-directory: ./bigbluebutton-tests/playwright
run: |
Expand Down

0 comments on commit f2c7240

Please sign in to comment.