blob: 027b82e1cf17fec6fc24f330041cd982300eafd7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
version: 2
jobs:
sytestpy2postgresmerged:
docker:
- image: matrixdotorg/sytest-synapse:dinsic
working_directory: /src
steps:
- checkout
- run: bash .circleci/merge_base_branch.sh
- run: pwd
- run: ls
- run: ls /
- run: ls jenkins
- run: POSTGRES=1 /synapse_sytest.sh
- store_artifacts:
path: /logs
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
build:
jobs:
- sytestpy2postgresmerged:
filters:
branches:
ignore: /develop|master|release-.*/
- sytestpy2postgresworkersmerged:
filters:
branches:
ignore: /develop|master|release-.*/
|