From f710d5480bc965a4697d42d293f1f46ee9905603 Mon Sep 17 00:00:00 2001 From: kegsay Date: Thu, 12 Oct 2023 11:33:14 +0100 Subject: Update complement.sh to match new public API shape (#16466) * Update complement.sh to match new public API shape Sister PR to https://github.com/matrix-org/complement/pull/666 Context: https://github.com/matrix-org/complement/issues/654#issuecomment-1746613495 * Changelog * Pedantry * Run complement plz --- scripts-dev/complement.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts-dev') diff --git a/scripts-dev/complement.sh b/scripts-dev/complement.sh index 8416b55674..3e0cddb527 100755 --- a/scripts-dev/complement.sh +++ b/scripts-dev/complement.sh @@ -214,7 +214,7 @@ fi extra_test_args=() -test_tags="synapse_blacklist,msc3874,msc3890,msc3391,msc3930,faster_joins" +test_packages="./tests/csapi ./tests ./tests/msc3874 ./tests/msc3890 ./tests/msc3391 ./tests/msc3930 ./tests/msc3902" # All environment variables starting with PASS_ will be shared. # (The prefix is stripped off before reaching the container.) @@ -277,4 +277,4 @@ export PASS_SYNAPSE_LOG_TESTING=1 echo "Images built; running complement" cd "$COMPLEMENT_DIR" -go test -v -tags $test_tags -count=1 "${extra_test_args[@]}" "$@" ./tests/... +go test -v -tags "synapse_blacklist" -count=1 "${extra_test_args[@]}" "$@" $test_packages -- cgit 1.5.1 From 7291c68eea5479d07739bef6af9b9d086095b4d4 Mon Sep 17 00:00:00 2001 From: reivilibre Date: Mon, 16 Oct 2023 14:22:50 +0000 Subject: Update the release script to remind releaser to check for special release notes. (#16461) * Add reminder to check special release notes board in release script * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) * Update release.py * Bah, black --------- Signed-off-by: Olivier Wilkinson (reivilibre) --- changelog.d/16461.misc | 1 + scripts-dev/release.py | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 changelog.d/16461.misc (limited to 'scripts-dev') diff --git a/changelog.d/16461.misc b/changelog.d/16461.misc new file mode 100644 index 0000000000..96d040b742 --- /dev/null +++ b/changelog.d/16461.misc @@ -0,0 +1 @@ +Update the release script to remind releaser to check for special release notes. \ No newline at end of file diff --git a/scripts-dev/release.py b/scripts-dev/release.py index 74f41a40ec..7508ae5096 100755 --- a/scripts-dev/release.py +++ b/scripts-dev/release.py @@ -684,6 +684,10 @@ def full(gh_token: str) -> None: click.echo("1. If this is a security release, read the security wiki page.") click.echo("2. Check for any release blockers before proceeding.") click.echo(" https://github.com/matrix-org/synapse/labels/X-Release-Blocker") + click.echo( + "3. Check for any other special release notes, including announcements to add to the changelog or special deployment instructions." + ) + click.echo(" See the 'Synapse Maintainer Report'.") click.confirm("Ready?", abort=True) -- cgit 1.5.1