mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-22 09:35:45 +03:00
Allow running twisted trunk against other branches (#15302)
* Allow running twisted trunk against other branches I would like to do this so we can try Synapse's typechecking against a specific branch that the project solicited tests for, see https://mail.python.org/archives/list/twisted@python.org/message/GGO5JHA5S475AK6JZ3GCC3GIHGKQYM6Y/ * Changelog
This commit is contained in:
parent
9b1f99ba6b
commit
882911a863
2 changed files with 9 additions and 1 deletions
9
.github/workflows/twisted_trunk.yml
vendored
9
.github/workflows/twisted_trunk.yml
vendored
|
@ -5,6 +5,13 @@ on:
|
||||||
- cron: 0 8 * * *
|
- cron: 0 8 * * *
|
||||||
|
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
twisted_ref:
|
||||||
|
description: Commit, branch or tag to checkout from upstream Twisted.
|
||||||
|
required: false
|
||||||
|
default: 'trunk'
|
||||||
|
type: string
|
||||||
|
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
|
@ -29,7 +36,7 @@ jobs:
|
||||||
extras: "all"
|
extras: "all"
|
||||||
- run: |
|
- run: |
|
||||||
poetry remove twisted
|
poetry remove twisted
|
||||||
poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk
|
poetry add --extras tls git+https://github.com/twisted/twisted.git#${{ inputs.twisted_ref }}
|
||||||
poetry install --no-interaction --extras "all test"
|
poetry install --no-interaction --extras "all test"
|
||||||
- name: Remove warn_unused_ignores from mypy config
|
- name: Remove warn_unused_ignores from mypy config
|
||||||
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
|
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
|
||||||
|
|
1
changelog.d/15302.misc
Normal file
1
changelog.d/15302.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Allow running the Twisted trunk job against other branches.
|
Loading…
Reference in a new issue