2021-08-23 06:12:45 -04:00
|
|
|
name: Twisted Trunk
|
|
|
|
|
|
|
|
on:
|
|
|
|
schedule:
|
|
|
|
- cron: 0 8 * * *
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
2022-04-13 06:26:53 -04:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2021-08-23 06:12:45 -04:00
|
|
|
jobs:
|
|
|
|
mypy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 09:20:32 -04:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-07 10:07:06 -04:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-28 06:08:15 -05:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-07 10:07:06 -04:00
|
|
|
with:
|
2022-11-02 19:19:57 -04:00
|
|
|
toolchain: stable
|
2022-09-07 10:07:06 -04:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
2022-04-13 06:26:53 -04:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
|
|
|
extras: "all"
|
|
|
|
- run: |
|
|
|
|
poetry remove twisted
|
|
|
|
poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk
|
|
|
|
poetry install --no-interaction --extras "all test"
|
2022-04-29 12:57:23 -04:00
|
|
|
- name: Remove warn_unused_ignores from mypy config
|
|
|
|
run: sed '/warn_unused_ignores = True/d' -i mypy.ini
|
2022-04-13 06:26:53 -04:00
|
|
|
- run: poetry run mypy
|
2021-08-23 06:12:45 -04:00
|
|
|
|
|
|
|
trial:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 09:20:32 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-08-23 06:12:45 -04:00
|
|
|
- run: sudo apt-get -qq install xmlsec1
|
2022-09-07 10:07:06 -04:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-28 06:08:15 -05:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-07 10:07:06 -04:00
|
|
|
with:
|
2022-11-02 19:19:57 -04:00
|
|
|
toolchain: stable
|
2022-09-07 10:07:06 -04:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
2022-04-13 06:26:53 -04:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
2021-08-23 06:12:45 -04:00
|
|
|
with:
|
2022-04-13 06:26:53 -04:00
|
|
|
python-version: "3.x"
|
|
|
|
extras: "all test"
|
|
|
|
- run: |
|
|
|
|
poetry remove twisted
|
|
|
|
poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk
|
|
|
|
poetry install --no-interaction --extras "all test"
|
|
|
|
- run: poetry run trial --jobs 2 tests
|
2021-08-23 06:12:45 -04:00
|
|
|
|
|
|
|
- name: Dump logs
|
2021-10-12 16:09:49 -04:00
|
|
|
# Logs are most useful when the command fails, always include them.
|
|
|
|
if: ${{ always() }}
|
2021-08-23 06:12:45 -04:00
|
|
|
# Note: Dumps to workflow logs instead of using actions/upload-artifact
|
|
|
|
# This keeps logs colocated with failing jobs
|
|
|
|
# It also ignores find's exit code; this is a best effort affair
|
|
|
|
run: >-
|
|
|
|
find _trial_temp -name '*.log'
|
|
|
|
-exec echo "::group::{}" \;
|
|
|
|
-exec cat {} \;
|
|
|
|
-exec echo "::endgroup::" \;
|
|
|
|
|| true
|
|
|
|
|
|
|
|
sytest:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
|
|
|
image: matrixdotorg/sytest-synapse:buster
|
|
|
|
volumes:
|
|
|
|
- ${{ github.workspace }}:/src
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 09:20:32 -04:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-07 10:07:06 -04:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-28 06:08:15 -05:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-07 10:07:06 -04:00
|
|
|
with:
|
2022-11-02 19:19:57 -04:00
|
|
|
toolchain: stable
|
2022-09-07 10:07:06 -04:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
2021-08-23 06:12:45 -04:00
|
|
|
- name: Patch dependencies
|
2022-04-13 06:26:53 -04:00
|
|
|
# Note: The poetry commands want to create a virtualenv in /src/.venv/,
|
|
|
|
# but the sytest-synapse container expects it to be in /venv/.
|
|
|
|
# We symlink it before running poetry so that poetry actually
|
|
|
|
# ends up installing to `/venv`.
|
|
|
|
run: |
|
|
|
|
ln -s -T /venv /src/.venv
|
|
|
|
poetry remove twisted
|
|
|
|
poetry add --extras tls git+https://github.com/twisted/twisted.git#trunk
|
|
|
|
poetry install --no-interaction --extras "all test"
|
2021-08-23 06:12:45 -04:00
|
|
|
working-directory: /src
|
|
|
|
- name: Run SyTest
|
|
|
|
run: /bootstrap.sh synapse
|
|
|
|
working-directory: /src
|
2022-04-13 06:26:53 -04:00
|
|
|
env:
|
|
|
|
# Use offline mode to avoid reinstalling the pinned version of
|
|
|
|
# twisted.
|
|
|
|
OFFLINE: 1
|
2021-08-23 06:12:45 -04:00
|
|
|
- name: Summarise results.tap
|
|
|
|
if: ${{ always() }}
|
|
|
|
run: /sytest/scripts/tap_to_gha.pl /logs/results.tap
|
|
|
|
- name: Upload SyTest logs
|
2022-10-03 14:11:22 -04:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-08-23 06:12:45 -04:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
|
|
|
name: Sytest Logs - ${{ job.status }} - (${{ join(matrix.*, ', ') }})
|
|
|
|
path: |
|
|
|
|
/logs/results.tap
|
|
|
|
/logs/**/*.log*
|
|
|
|
|
2022-07-01 11:42:49 -04:00
|
|
|
complement:
|
|
|
|
if: "${{ !failure() && !cancelled() }}"
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- arrangement: monolith
|
|
|
|
database: SQLite
|
|
|
|
|
|
|
|
- arrangement: monolith
|
|
|
|
database: Postgres
|
|
|
|
|
|
|
|
- arrangement: workers
|
|
|
|
database: Postgres
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 09:20:32 -04:00
|
|
|
- name: Run actions/checkout@v3 for synapse
|
|
|
|
uses: actions/checkout@v3
|
2022-07-01 11:42:49 -04:00
|
|
|
with:
|
|
|
|
path: synapse
|
|
|
|
|
2022-07-05 09:24:42 -04:00
|
|
|
- name: Prepare Complement's Prerequisites
|
|
|
|
run: synapse/.ci/scripts/setup_complement_prerequisites.sh
|
|
|
|
|
2022-07-01 11:42:49 -04:00
|
|
|
# This step is specific to the 'Twisted trunk' test run:
|
|
|
|
- name: Patch dependencies
|
|
|
|
run: |
|
|
|
|
set -x
|
|
|
|
DEBIAN_FRONTEND=noninteractive sudo apt-get install -yqq python3 pipx
|
2022-10-26 12:22:26 -04:00
|
|
|
pipx install poetry==1.2.0
|
2022-07-01 11:42:49 -04:00
|
|
|
|
|
|
|
poetry remove -n twisted
|
|
|
|
poetry add -n --extras tls git+https://github.com/twisted/twisted.git#trunk
|
|
|
|
poetry lock --no-update
|
|
|
|
working-directory: synapse
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
set -o pipefail
|
2022-08-28 16:05:30 -04:00
|
|
|
TEST_ONLY_SKIP_DEP_HASH_VERIFICATION=1 POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | synapse/.ci/scripts/gotestfmt
|
2022-07-01 11:42:49 -04:00
|
|
|
shell: bash
|
|
|
|
name: Run Complement Tests
|
|
|
|
|
2021-08-23 06:12:45 -04:00
|
|
|
# open an issue if the build fails, so we know about it.
|
|
|
|
open-issue:
|
|
|
|
if: failure()
|
|
|
|
needs:
|
|
|
|
- mypy
|
|
|
|
- trial
|
|
|
|
- sytest
|
2022-07-01 11:42:49 -04:00
|
|
|
- complement
|
2021-08-23 06:12:45 -04:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 09:20:32 -04:00
|
|
|
- uses: actions/checkout@v3
|
2021-08-23 09:06:49 -04:00
|
|
|
- uses: JasonEtco/create-an-issue@5d9504915f79f9cc6d791934b8ef34f2353dd74d # v2.5.0, 2020-12-06
|
2021-08-23 06:12:45 -04:00
|
|
|
env:
|
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
with:
|
2021-08-23 09:06:49 -04:00
|
|
|
update_existing: true
|
2021-08-23 06:12:45 -04:00
|
|
|
filename: .ci/twisted_trunk_build_failed_issue_template.md
|