Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
90e9b4fa
Unverified
Commit
90e9b4fa
authored
2 years ago
by
Patrick Cloke
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Do not fail build if complement with workers fails. (#13266)
parent
0312ff44
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/tests.yml
+24
-3
24 additions, 3 deletions
.github/workflows/tests.yml
changelog.d/13266.misc
+1
-0
1 addition, 0 deletions
changelog.d/13266.misc
with
25 additions
and
3 deletions
.github/workflows/tests.yml
+
24
−
3
View file @
90e9b4fa
...
...
@@ -328,9 +328,6 @@ jobs:
-
arrangement
:
monolith
database
:
Postgres
-
arrangement
:
workers
database
:
Postgres
steps
:
-
name
:
Run actions/checkout@v2 for synapse
uses
:
actions/checkout@v2
...
...
@@ -346,6 +343,30 @@ jobs:
shell
:
bash
name
:
Run Complement Tests
# XXX When complement with workers is stable, move this back into the standard
# "complement" matrix above.
#
# See https://github.com/matrix-org/synapse/issues/13161
complement-workers
:
if
:
"
${{
!failure()
&&
!cancelled()
}}"
needs
:
linting-done
runs-on
:
ubuntu-latest
steps
:
-
name
:
Run actions/checkout@v2 for synapse
uses
:
actions/checkout@v2
with
:
path
:
synapse
-
name
:
Prepare Complement's Prerequisites
run
:
synapse/.ci/scripts/setup_complement_prerequisites.sh
-
run
:
|
set -o pipefail
POSTGRES=1 WORKERS=1 COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
shell
:
bash
name
:
Run Complement Tests
# a job which marks all the other jobs as complete, thus allowing PRs to be merged.
tests-done
:
if
:
${{ always() }}
...
...
This diff is collapsed.
Click to expand it.
changelog.d/13266.misc
0 → 100644
+
1
−
0
View file @
90e9b4fa
Do not fail build if complement with workers fails.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment