diff options
author | Amber Brown <hawkowl@atleastfornow.net> | 2018-08-14 21:30:34 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-14 21:30:34 +1000 |
commit | 614e6d517d90922cbc54e59d0117a4daaed9a9fc (patch) | |
tree | bf5cd9a9c23aaf96476187857bc20e8d6e414e35 /.circleci | |
parent | Merge pull request #3681 from matrix-org/neilj/fix_reap_users_in_postgres (diff) | |
download | synapse-614e6d517d90922cbc54e59d0117a4daaed9a9fc.tar.xz |
Dockerised sytest (#3660)
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000000..e03f01b837 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,48 @@ +version: 2 +jobs: + sytestpy2: + machine: true + steps: + - checkout + - run: docker pull matrixdotorg/sytest-synapsepy2 + - run: docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs matrixdotorg/sytest-synapsepy2 + - store_artifacts: + path: ~/project/logs + destination: logs + sytestpy2postgres: + machine: true + steps: + - checkout + - run: docker pull matrixdotorg/sytest-synapsepy2 + - run: docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs -e POSTGRES=1 matrixdotorg/sytest-synapsepy2 + - store_artifacts: + path: ~/project/logs + destination: logs + sytestpy3: + machine: true + steps: + - checkout + - run: docker pull matrixdotorg/sytest-synapsepy3 + - run: docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs hawkowl/sytestpy3 + - store_artifacts: + path: ~/project/logs + destination: logs + sytestpy3postgres: + machine: true + steps: + - checkout + - run: docker pull matrixdotorg/sytest-synapsepy3 + - run: docker run --rm -it -v $(pwd)\:/src -v $(pwd)/logs\:/logs -e POSTGRES=1 matrixdotorg/sytest-synapsepy3 + - store_artifacts: + path: ~/project/logs + destination: logs + +workflows: + version: 2 + build: + jobs: + - sytestpy2 + - sytestpy2postgres +# Currently broken while the Python 3 port is incomplete +# - sytestpy3 +# - sytestpy3postgres |