1 files changed, 18 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 341395765d..ba316f7233 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -13,6 +13,20 @@ jobs:
destination: logs
- store_test_results:
path: /logs
+ sytestpy2postgresworkersmerged:
+ docker:
+ - image: matrixdotorg/sytest-synapse:dinsic
+ working_directory: /src
+ steps:
+ - checkout
+ - run: bash .circleci/merge_base_branch.sh
+ - run: POSTGRES=1 WORKERS=1 /synapse_sytest.sh
+ - store_artifacts:
+ path: /logs
+ destination: logs
+ - store_test_results:
+ path: /logs
+
workflows:
version: 2
@@ -21,4 +35,8 @@ workflows:
- sytestpy2postgresmerged:
filters:
branches:
+ ignore: /develop|master|release-.*/
+ - sytestpy2postgresworkersmerged:
+ filters:
+ branches:
ignore: /develop|master|release-.*/
\ No newline at end of file
|