summary refs log tree commit diff
path: root/.circleci/config.yml
blob: 341395765d8b79c2bfba4edd1c4e4c6ee4767a11 (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
version: 2
jobs:
  sytestpy2postgresmerged:
    docker:
      - image: matrixdotorg/sytest-synapse:dinsic
    working_directory: /src
    steps:
      - checkout
      - run: bash .circleci/merge_base_branch.sh
      - run: POSTGRES=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-.*/