2021-04-09 11:54:30 +02:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ["develop", "release-*"]
|
|
|
|
pull_request:
|
2022-10-03 18:16:45 +02:00
|
|
|
workflow_dispatch:
|
2021-04-09 11:54:30 +02:00
|
|
|
|
2021-07-22 12:35:06 +02:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
2021-08-05 12:22:27 +02:00
|
|
|
|
2021-04-09 11:54:30 +02:00
|
|
|
jobs:
|
2022-09-09 12:29:04 +02:00
|
|
|
# Job to detect what has changed so we don't run e.g. Rust checks on PRs that
|
|
|
|
# don't modify Rust code.
|
|
|
|
changes:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
rust: ${{ !startsWith(github.ref, 'refs/pull/') || steps.filter.outputs.rust }}
|
|
|
|
steps:
|
|
|
|
- uses: dorny/paths-filter@v2
|
|
|
|
id: filter
|
|
|
|
# We only check on PRs
|
|
|
|
if: startsWith(github.ref, 'refs/pull/')
|
|
|
|
with:
|
|
|
|
filters: |
|
|
|
|
rust:
|
|
|
|
- 'rust/**'
|
|
|
|
- 'Cargo.toml'
|
2022-11-28 12:47:16 +01:00
|
|
|
- 'Cargo.lock'
|
2022-09-09 12:29:04 +02:00
|
|
|
|
2022-03-01 20:47:02 +01:00
|
|
|
check-sampleconfig:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-10-04 13:24:36 +02:00
|
|
|
- uses: actions/setup-python@v4
|
2022-11-01 14:58:39 +01:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2022-09-16 17:18:32 +02:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
|
|
|
with:
|
|
|
|
extras: "all"
|
|
|
|
- run: poetry run scripts-dev/generate_sample_config.sh --check
|
|
|
|
- run: poetry run scripts-dev/config-lint.sh
|
2022-03-01 20:47:02 +01:00
|
|
|
|
2022-06-15 17:27:18 +02:00
|
|
|
check-schema-delta:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-10-04 13:24:36 +02:00
|
|
|
- uses: actions/setup-python@v4
|
2022-11-01 14:58:39 +01:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2022-06-15 17:27:18 +02:00
|
|
|
- run: "pip install 'click==8.1.1' 'GitPython>=3.1.20'"
|
|
|
|
- run: scripts-dev/check_schema_delta.py --force-colors
|
|
|
|
|
2021-04-09 11:54:30 +02:00
|
|
|
lint:
|
2022-12-21 19:05:21 +01:00
|
|
|
uses: "matrix-org/backend-meta/.github/workflows/python-poetry-ci.yml@v2"
|
2022-04-27 15:03:44 +02:00
|
|
|
with:
|
|
|
|
typechecking-extras: "all"
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
lint-crlf:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Check line endings
|
|
|
|
run: scripts-dev/check_line_terminators.sh
|
|
|
|
|
|
|
|
lint-newsfile:
|
2022-10-03 20:29:53 +02:00
|
|
|
if: ${{ (github.base_ref == 'develop' || contains(github.base_ref, 'release-')) && github.actor != 'dependabot[bot]' }}
|
2021-04-09 11:54:30 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-05-26 15:14:43 +02:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
fetch-depth: 0
|
2022-10-04 13:24:36 +02:00
|
|
|
- uses: actions/setup-python@v4
|
2022-11-01 14:58:39 +01:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2022-03-01 20:47:02 +01:00
|
|
|
- run: "pip install 'towncrier>=18.6.0rc1'"
|
2022-03-02 19:00:26 +01:00
|
|
|
- run: scripts-dev/check-newsfragment.sh
|
2021-08-10 13:15:10 +02:00
|
|
|
env:
|
|
|
|
PULL_REQUEST_NUMBER: ${{ github.event.number }}
|
2021-04-09 11:54:30 +02:00
|
|
|
|
2022-08-17 12:17:04 +02:00
|
|
|
lint-pydantic:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-08-17 12:17:04 +02:00
|
|
|
with:
|
|
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
|
|
|
with:
|
|
|
|
extras: "all"
|
|
|
|
- run: poetry run scripts-dev/check_pydantic_models.py
|
|
|
|
|
2022-09-09 12:29:04 +02:00
|
|
|
lint-clippy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-09 12:29:04 +02:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-09 12:29:04 +02:00
|
|
|
with:
|
2022-09-21 11:42:03 +02:00
|
|
|
toolchain: 1.58.1
|
2022-09-09 12:29:04 +02:00
|
|
|
components: clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
2022-12-02 19:04:28 +01:00
|
|
|
- run: cargo clippy -- -D warnings
|
|
|
|
|
|
|
|
# We also lint against a nightly rustc so that we can lint the benchmark
|
|
|
|
# suite, which requires a nightly compiler.
|
|
|
|
lint-clippy-nightly:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
|
|
|
with:
|
|
|
|
toolchain: nightly-2022-12-01
|
|
|
|
components: clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
|
|
|
- run: cargo clippy --all-features -- -D warnings
|
2022-09-09 12:29:04 +02:00
|
|
|
|
|
|
|
lint-rustfmt:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs: changes
|
|
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-09 12:29:04 +02:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-09 12:29:04 +02:00
|
|
|
with:
|
2022-11-01 14:58:39 +01:00
|
|
|
toolchain: 1.58.1
|
|
|
|
components: rustfmt
|
2022-09-09 12:29:04 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
|
|
|
- run: cargo fmt --check
|
|
|
|
|
2021-04-09 11:54:30 +02:00
|
|
|
# Dummy step to gate other tests on without repeating the whole list
|
|
|
|
linting-done:
|
2021-07-14 15:41:23 +02:00
|
|
|
if: ${{ !cancelled() }} # Run this even if prior jobs were skipped
|
2022-09-09 12:29:04 +02:00
|
|
|
needs:
|
|
|
|
- lint
|
|
|
|
- lint-crlf
|
|
|
|
- lint-newsfile
|
|
|
|
- lint-pydantic
|
|
|
|
- check-sampleconfig
|
|
|
|
- check-schema-delta
|
|
|
|
- lint-clippy
|
|
|
|
- lint-rustfmt
|
2021-04-09 11:54:30 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- run: "true"
|
|
|
|
|
2022-09-05 14:31:42 +02:00
|
|
|
calculate-test-jobs:
|
2021-07-14 15:41:23 +02:00
|
|
|
if: ${{ !cancelled() && !failure() }} # Allow previous steps to be skipped, but not fail
|
2021-04-09 11:54:30 +02:00
|
|
|
needs: linting-done
|
|
|
|
runs-on: ubuntu-latest
|
2022-09-05 14:31:42 +02:00
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-10-04 13:24:36 +02:00
|
|
|
- uses: actions/setup-python@v4
|
2022-11-01 14:58:39 +01:00
|
|
|
with:
|
|
|
|
python-version: "3.x"
|
2022-09-05 14:31:42 +02:00
|
|
|
- id: get-matrix
|
|
|
|
run: .ci/scripts/calculate_jobs.py
|
|
|
|
outputs:
|
|
|
|
trial_test_matrix: ${{ steps.get-matrix.outputs.trial_test_matrix }}
|
|
|
|
sytest_test_matrix: ${{ steps.get-matrix.outputs.sytest_test_matrix }}
|
|
|
|
|
|
|
|
trial:
|
|
|
|
if: ${{ !cancelled() && !failure() }} # Allow previous steps to be skipped, but not fail
|
|
|
|
needs: calculate-test-jobs
|
|
|
|
runs-on: ubuntu-latest
|
2021-04-09 11:54:30 +02:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-09-05 14:31:42 +02:00
|
|
|
job: ${{ fromJson(needs.calculate-test-jobs.outputs.trial_test_matrix) }}
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-09 11:54:30 +02:00
|
|
|
- run: sudo apt-get -qq install xmlsec1
|
2022-09-05 14:31:42 +02:00
|
|
|
- name: Set up PostgreSQL ${{ matrix.job.postgres-version }}
|
|
|
|
if: ${{ matrix.job.postgres-version }}
|
2022-12-07 16:47:05 +01:00
|
|
|
# 1. Mount postgres data files onto a tmpfs in-memory filesystem to reduce overhead of docker's overlayfs layer.
|
|
|
|
# 2. Expose the unix socket for postgres. This removes latency of using docker-proxy for connections.
|
2021-04-09 11:54:30 +02:00
|
|
|
run: |
|
|
|
|
docker run -d -p 5432:5432 \
|
2022-12-07 16:47:05 +01:00
|
|
|
--tmpfs /var/lib/postgres:rw,size=6144m \
|
|
|
|
--mount 'type=bind,src=/var/run/postgresql,dst=/var/run/postgresql' \
|
2021-04-09 11:54:30 +02:00
|
|
|
-e POSTGRES_PASSWORD=postgres \
|
|
|
|
-e POSTGRES_INITDB_ARGS="--lc-collate C --lc-ctype C --encoding UTF8" \
|
2022-09-05 14:31:42 +02:00
|
|
|
postgres:${{ matrix.job.postgres-version }}
|
2022-10-25 12:27:56 +02:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-10-25 12:27:56 +02:00
|
|
|
with:
|
|
|
|
toolchain: 1.58.1
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
2022-04-12 18:41:21 +02:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
2021-04-09 11:54:30 +02:00
|
|
|
with:
|
2022-09-05 14:31:42 +02:00
|
|
|
python-version: ${{ matrix.job.python-version }}
|
|
|
|
extras: ${{ matrix.job.extras }}
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Await PostgreSQL
|
2022-09-05 14:31:42 +02:00
|
|
|
if: ${{ matrix.job.postgres-version }}
|
2021-04-09 11:54:30 +02:00
|
|
|
timeout-minutes: 2
|
|
|
|
run: until pg_isready -h localhost; do sleep 1; done
|
2022-12-07 16:47:05 +01:00
|
|
|
- run: poetry run trial --jobs=6 tests
|
2021-04-09 11:54:30 +02:00
|
|
|
env:
|
2022-09-05 14:31:42 +02:00
|
|
|
SYNAPSE_POSTGRES: ${{ matrix.job.database == 'postgres' || '' }}
|
2022-12-07 16:47:05 +01:00
|
|
|
SYNAPSE_POSTGRES_HOST: /var/run/postgresql
|
2021-04-09 11:54:30 +02:00
|
|
|
SYNAPSE_POSTGRES_USER: postgres
|
|
|
|
SYNAPSE_POSTGRES_PASSWORD: postgres
|
|
|
|
- name: Dump logs
|
2021-10-12 22:09:49 +02:00
|
|
|
# Logs are most useful when the command fails, always include them.
|
|
|
|
if: ${{ always() }}
|
2021-04-09 11:54:30 +02: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
|
|
|
|
|
|
|
|
trial-olddeps:
|
2022-04-12 12:50:11 +02:00
|
|
|
# Note: sqlite only; no postgres
|
2021-07-14 15:41:23 +02:00
|
|
|
if: ${{ !cancelled() && !failure() }} # Allow previous steps to be skipped, but not fail
|
2021-04-09 11:54:30 +02:00
|
|
|
needs: linting-done
|
2022-09-06 13:43:04 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2021-04-09 11:54:30 +02:00
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-06 13:43:04 +02:00
|
|
|
|
2022-09-06 20:01:37 +02:00
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-06 20:01:37 +02:00
|
|
|
with:
|
2022-09-21 11:42:03 +02:00
|
|
|
toolchain: 1.58.1
|
2022-09-07 15:56:59 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-09-06 20:01:37 +02:00
|
|
|
|
2022-09-06 13:43:04 +02:00
|
|
|
# There aren't wheels for some of the older deps, so we need to install
|
|
|
|
# their build dependencies
|
|
|
|
- run: |
|
|
|
|
sudo apt-get -qq install build-essential libffi-dev python-dev \
|
|
|
|
libxml2-dev libxslt-dev xmlsec1 zlib1g-dev libjpeg-dev libwebp-dev
|
|
|
|
|
|
|
|
- uses: actions/setup-python@v4
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
|
|
|
|
# Calculating the old-deps actually takes a bunch of time, so we cache the
|
|
|
|
# pyproject.toml / poetry.lock. We need to cache pyproject.toml as
|
|
|
|
# otherwise the `poetry install` step will error due to the poetry.lock
|
|
|
|
# file being outdated.
|
|
|
|
#
|
|
|
|
# This caches the output of `Prepare old deps`, which should generate the
|
|
|
|
# same `pyproject.toml` and `poetry.lock` for a given `pyproject.toml` input.
|
|
|
|
- uses: actions/cache@v3
|
|
|
|
id: cache-poetry-old-deps
|
|
|
|
name: Cache poetry.lock
|
2021-04-09 11:54:30 +02:00
|
|
|
with:
|
2022-09-06 13:43:04 +02:00
|
|
|
path: |
|
|
|
|
poetry.lock
|
|
|
|
pyproject.toml
|
|
|
|
key: poetry-old-deps2-${{ hashFiles('pyproject.toml') }}
|
|
|
|
- name: Prepare old deps
|
|
|
|
if: steps.cache-poetry-old-deps.outputs.cache-hit != 'true'
|
|
|
|
run: .ci/scripts/prepare_old_deps.sh
|
|
|
|
|
|
|
|
# We only now install poetry so that `setup-python-poetry` caches the
|
|
|
|
# right poetry.lock's dependencies.
|
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
|
|
|
with:
|
|
|
|
python-version: '3.7'
|
|
|
|
extras: "all test"
|
|
|
|
|
2022-12-07 16:47:05 +01:00
|
|
|
- run: poetry run trial -j6 tests
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Dump logs
|
2021-10-12 22:09:49 +02:00
|
|
|
# Logs are most useful when the command fails, always include them.
|
|
|
|
if: ${{ always() }}
|
2021-04-09 11:54:30 +02: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
|
|
|
|
|
|
|
|
trial-pypy:
|
|
|
|
# Very slow; only run if the branch name includes 'pypy'
|
2022-04-12 18:41:21 +02:00
|
|
|
# Note: sqlite only; no postgres. Completely untested since poetry move.
|
2021-07-14 15:41:23 +02:00
|
|
|
if: ${{ contains(github.ref, 'pypy') && !failure() && !cancelled() }}
|
2021-04-09 11:54:30 +02:00
|
|
|
needs: linting-done
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-12-21 20:37:04 +01:00
|
|
|
python-version: ["pypy-3.7"]
|
2022-04-12 18:41:21 +02:00
|
|
|
extras: ["all"]
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-12 18:41:21 +02:00
|
|
|
# Install libs necessary for PyPy to build binary wheels for dependencies
|
2021-04-09 11:54:30 +02:00
|
|
|
- run: sudo apt-get -qq install xmlsec1 libxml2-dev libxslt-dev
|
2022-04-12 18:41:21 +02:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
2021-04-09 11:54:30 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2022-04-12 18:41:21 +02:00
|
|
|
extras: ${{ matrix.extras }}
|
|
|
|
- run: poetry run trial --jobs=2 tests
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Dump logs
|
2021-10-12 22:09:49 +02:00
|
|
|
# Logs are most useful when the command fails, always include them.
|
|
|
|
if: ${{ always() }}
|
2021-04-09 11:54:30 +02: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:
|
2021-07-14 15:41:23 +02:00
|
|
|
if: ${{ !failure() && !cancelled() }}
|
2022-09-05 14:31:42 +02:00
|
|
|
needs: calculate-test-jobs
|
2021-04-09 11:54:30 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container:
|
2022-09-05 14:31:42 +02:00
|
|
|
image: matrixdotorg/sytest-synapse:${{ matrix.job.sytest-tag }}
|
2021-04-09 11:54:30 +02:00
|
|
|
volumes:
|
|
|
|
- ${{ github.workspace }}:/src
|
|
|
|
env:
|
2021-09-20 18:35:16 +02:00
|
|
|
SYTEST_BRANCH: ${{ github.head_ref }}
|
2022-09-05 14:31:42 +02:00
|
|
|
POSTGRES: ${{ matrix.job.postgres && 1}}
|
|
|
|
MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') && 1}}
|
|
|
|
WORKERS: ${{ matrix.job.workers && 1 }}
|
|
|
|
BLACKLIST: ${{ matrix.job.workers && 'synapse-blacklist-with-workers' }}
|
2021-08-11 21:08:48 +02:00
|
|
|
TOP: ${{ github.workspace }}
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-09-05 14:31:42 +02:00
|
|
|
job: ${{ fromJson(needs.calculate-test-jobs.outputs.sytest_test_matrix) }}
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Prepare test blacklist
|
2021-08-11 20:59:57 +02:00
|
|
|
run: cat sytest-blacklist .ci/worker-blacklist > synapse-blacklist-with-workers
|
2022-09-07 15:56:59 +02:00
|
|
|
|
2022-09-06 20:01:37 +02:00
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-06 20:01:37 +02:00
|
|
|
with:
|
2022-09-21 11:42:03 +02:00
|
|
|
toolchain: 1.58.1
|
2022-09-07 15:56:59 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Run SyTest
|
|
|
|
run: /bootstrap.sh synapse
|
|
|
|
working-directory: /src
|
2021-06-02 18:10:37 +02:00
|
|
|
- name: Summarise results.tap
|
2021-04-09 11:54:30 +02:00
|
|
|
if: ${{ always() }}
|
2021-06-02 18:10:37 +02:00
|
|
|
run: /sytest/scripts/tap_to_gha.pl /logs/results.tap
|
2021-04-09 11:54:30 +02:00
|
|
|
- name: Upload SyTest logs
|
2022-10-03 20:11:22 +02:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-04-09 11:54:30 +02:00
|
|
|
if: ${{ always() }}
|
|
|
|
with:
|
2022-09-05 14:31:42 +02:00
|
|
|
name: Sytest Logs - ${{ job.status }} - (${{ join(matrix.job.*, ', ') }})
|
2021-04-09 11:54:30 +02:00
|
|
|
path: |
|
|
|
|
/logs/results.tap
|
|
|
|
/logs/**/*.log*
|
|
|
|
|
2021-10-18 17:14:12 +02:00
|
|
|
export-data:
|
|
|
|
if: ${{ !failure() && !cancelled() }} # Allow previous steps to be skipped, but not fail
|
|
|
|
needs: [linting-done, portdb]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
TOP: ${{ github.workspace }}
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: "postgres"
|
|
|
|
POSTGRES_INITDB_ARGS: "--lc-collate C --lc-ctype C --encoding UTF8"
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-16 17:25:54 +02:00
|
|
|
- run: sudo apt-get -qq install xmlsec1 postgresql-client
|
2022-04-08 21:18:54 +02:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
2021-10-18 17:14:12 +02:00
|
|
|
with:
|
2022-04-08 21:18:54 +02:00
|
|
|
extras: "postgres"
|
2021-10-18 17:14:12 +02:00
|
|
|
- run: .ci/scripts/test_export_data_command.sh
|
2022-09-16 17:25:54 +02:00
|
|
|
env:
|
|
|
|
PGHOST: localhost
|
|
|
|
PGUSER: postgres
|
|
|
|
PGPASSWORD: postgres
|
|
|
|
PGDATABASE: postgres
|
|
|
|
|
2021-10-18 17:14:12 +02:00
|
|
|
|
2021-04-09 11:54:30 +02:00
|
|
|
portdb:
|
2021-07-14 15:41:23 +02:00
|
|
|
if: ${{ !failure() && !cancelled() }} # Allow previous steps to be skipped, but not fail
|
2021-04-09 11:54:30 +02:00
|
|
|
needs: linting-done
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
include:
|
2021-12-21 20:37:04 +01:00
|
|
|
- python-version: "3.7"
|
2022-11-08 18:17:13 +01:00
|
|
|
postgres-version: "11"
|
2021-04-09 11:54:30 +02:00
|
|
|
|
2022-11-01 14:07:54 +01:00
|
|
|
- python-version: "3.11"
|
2022-11-09 11:32:52 +01:00
|
|
|
postgres-version: "15"
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres:${{ matrix.postgres-version }}
|
|
|
|
ports:
|
|
|
|
- 5432:5432
|
|
|
|
env:
|
|
|
|
POSTGRES_PASSWORD: "postgres"
|
|
|
|
POSTGRES_INITDB_ARGS: "--lc-collate C --lc-ctype C --encoding UTF8"
|
|
|
|
options: >-
|
|
|
|
--health-cmd pg_isready
|
|
|
|
--health-interval 10s
|
|
|
|
--health-timeout 5s
|
|
|
|
--health-retries 5
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-11-09 11:32:52 +01:00
|
|
|
- name: Add PostgreSQL apt repository
|
|
|
|
# We need a version of pg_dump that can handle the version of
|
|
|
|
# PostgreSQL being tested against. The Ubuntu package repository lags
|
|
|
|
# behind new releases, so we have to use the PostreSQL apt repository.
|
|
|
|
# Steps taken from https://www.postgresql.org/download/linux/ubuntu/
|
|
|
|
run: |
|
|
|
|
sudo sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
|
|
|
|
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
|
|
|
|
sudo apt-get update
|
2022-09-16 17:25:54 +02:00
|
|
|
- run: sudo apt-get -qq install xmlsec1 postgresql-client
|
2022-04-08 13:00:05 +02:00
|
|
|
- uses: matrix-org/setup-python-poetry@v1
|
2021-04-09 11:54:30 +02:00
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
2022-04-08 13:00:05 +02:00
|
|
|
extras: "postgres"
|
2021-08-11 20:59:57 +02:00
|
|
|
- run: .ci/scripts/test_synapse_port_db.sh
|
2022-09-16 17:25:54 +02:00
|
|
|
id: run_tester_script
|
|
|
|
env:
|
|
|
|
PGHOST: localhost
|
|
|
|
PGUSER: postgres
|
|
|
|
PGPASSWORD: postgres
|
|
|
|
PGDATABASE: postgres
|
|
|
|
- name: "Upload schema differences"
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: ${{ failure() && !cancelled() && steps.run_tester_script.outcome == 'failure' }}
|
|
|
|
with:
|
|
|
|
name: Schema dumps
|
|
|
|
path: |
|
|
|
|
unported.sql
|
|
|
|
ported.sql
|
|
|
|
schema_diff
|
2021-04-09 11:54:30 +02:00
|
|
|
|
|
|
|
complement:
|
2022-05-31 15:02:00 +02:00
|
|
|
if: "${{ !failure() && !cancelled() }}"
|
2021-04-09 11:54:30 +02:00
|
|
|
needs: linting-done
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
2022-06-09 15:16:34 +02:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- arrangement: monolith
|
|
|
|
database: SQLite
|
|
|
|
|
|
|
|
- arrangement: monolith
|
|
|
|
database: Postgres
|
|
|
|
|
2022-08-01 12:51:44 +02:00
|
|
|
- arrangement: workers
|
|
|
|
database: Postgres
|
2022-07-13 14:30:42 +02:00
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- name: Run actions/checkout@v3 for synapse
|
|
|
|
uses: actions/checkout@v3
|
2022-07-13 14:30:42 +02:00
|
|
|
with:
|
|
|
|
path: synapse
|
|
|
|
|
2022-09-06 20:01:37 +02:00
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-06 20:01:37 +02:00
|
|
|
with:
|
2022-09-21 11:42:03 +02:00
|
|
|
toolchain: 1.58.1
|
2022-09-07 15:56:59 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-09-06 20:01:37 +02:00
|
|
|
|
2022-07-13 14:30:42 +02:00
|
|
|
- name: Prepare Complement's Prerequisites
|
|
|
|
run: synapse/.ci/scripts/setup_complement_prerequisites.sh
|
|
|
|
|
|
|
|
- run: |
|
|
|
|
set -o pipefail
|
2022-08-28 22:05:30 +02:00
|
|
|
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-13 14:30:42 +02:00
|
|
|
shell: bash
|
|
|
|
name: Run Complement Tests
|
|
|
|
|
2022-09-09 12:29:04 +02:00
|
|
|
cargo-test:
|
|
|
|
if: ${{ needs.changes.outputs.rust == 'true' }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
needs:
|
|
|
|
- linting-done
|
|
|
|
- changes
|
|
|
|
|
|
|
|
steps:
|
2022-10-03 15:20:32 +02:00
|
|
|
- uses: actions/checkout@v3
|
2022-09-09 12:29:04 +02:00
|
|
|
|
|
|
|
- name: Install Rust
|
2022-11-01 14:58:39 +01:00
|
|
|
# There don't seem to be versioned releases of this action per se: for each rust
|
|
|
|
# version there is a branch which gets constantly rebased on top of master.
|
|
|
|
# We pin to a specific commit for paranoia's sake.
|
2022-11-28 12:08:15 +01:00
|
|
|
uses: dtolnay/rust-toolchain@e645b0cf01249a964ec099494d38d2da0f0b349f
|
2022-09-09 12:29:04 +02:00
|
|
|
with:
|
2022-09-21 11:42:03 +02:00
|
|
|
toolchain: 1.58.1
|
2022-09-09 12:29:04 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
|
|
|
|
- run: cargo test
|
|
|
|
|
2021-07-20 12:41:19 +02:00
|
|
|
# a job which marks all the other jobs as complete, thus allowing PRs to be merged.
|
|
|
|
tests-done:
|
2021-07-22 12:10:30 +02:00
|
|
|
if: ${{ always() }}
|
2021-07-20 12:41:19 +02:00
|
|
|
needs:
|
|
|
|
- trial
|
|
|
|
- trial-olddeps
|
|
|
|
- sytest
|
2022-03-07 13:24:06 +01:00
|
|
|
- export-data
|
2021-07-20 12:41:19 +02:00
|
|
|
- portdb
|
|
|
|
- complement
|
2022-09-09 12:29:04 +02:00
|
|
|
- cargo-test
|
2021-07-20 12:41:19 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-07 13:24:06 +01:00
|
|
|
- uses: matrix-org/done-action@v2
|
|
|
|
with:
|
|
|
|
needs: ${{ toJSON(needs) }}
|
|
|
|
|
|
|
|
# The newsfile lint may be skipped on non PR builds
|
2022-09-12 19:31:23 +02:00
|
|
|
# Cargo test is skipped if there is no changes on Rust code
|
|
|
|
skippable: |
|
2022-03-07 13:24:06 +01:00
|
|
|
lint-newsfile
|
2022-09-12 14:26:33 +02:00
|
|
|
cargo-test
|