summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/ci.yml1
-rw-r--r--.github/workflows/nightly-test.yml24
2 files changed, 1 insertions, 24 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ccfa69ca3..f9f3e6bea 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,6 +4,7 @@ on:
branches-ignore:
- 'update-dependencies'
- 'dependabot/*'
+ - 'feat/test_pre_release_pyinstaller'
pull_request:
env:
FORCE_COLOR: "1"
diff --git a/.github/workflows/nightly-test.yml b/.github/workflows/nightly-test.yml
index 9ef914b9b..fe55f7c2e 100644
--- a/.github/workflows/nightly-test.yml
+++ b/.github/workflows/nightly-test.yml
@@ -89,27 +89,3 @@ jobs:
dist/qutebrowser-*-*.exe
if-no-files-found: error
- irc:
- timeout-minutes: 2
- continue-on-error: true
- runs-on: ubuntu-20.04
- needs: [pyinstaller]
- if: "always() && github.repository == 'qutebrowser/qutebrowser'"
- steps:
- - name: Send success IRC notification
- uses: Gottox/irc-message-action@v2
- if: "needs.pyinstaller.result == 'success'"
- with:
- server: irc.libera.chat
- channel: '#qutebrowser-bots'
- nickname: qutebrowser-bot
- message: "[${{ github.workflow }}] \u00033Success:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})"
- - name: Send non-success IRC notification
- uses: Gottox/irc-message-action@v2
- if: "needs.pyinstaller.result != 'success'"
- with:
- server: irc.libera.chat
- channel: '#qutebrowser-bots'
- nickname: qutebrowser-bot
- message: "[${{ github.workflow }}] \u00034FAIL:\u0003 ${{ github.ref }} https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }} (@${{ github.actor }})\n
- pyinstaller: ${{ needs.pyinstaller.result }}"