2018-08-14 07:30:34 -04:00
|
|
|
version: 2
|
|
|
|
jobs:
|
2018-09-27 06:44:21 -04:00
|
|
|
dockerhubuploadrelease:
|
2018-09-25 04:43:21 -04:00
|
|
|
machine: true
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-09-28 07:36:35 -04:00
|
|
|
- run: docker build -f docker/Dockerfile -t matrixdotorg/synapse:${CIRCLE_TAG} .
|
|
|
|
- run: docker build -f docker/Dockerfile -t matrixdotorg/synapse:${CIRCLE_TAG}-py3 --build-arg PYTHON_VERSION=3.6 .
|
2018-09-25 05:29:38 -04:00
|
|
|
- run: docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD
|
2018-09-28 07:36:35 -04:00
|
|
|
- run: docker push matrixdotorg/synapse:${CIRCLE_TAG}
|
|
|
|
- run: docker push matrixdotorg/synapse:${CIRCLE_TAG}-py3
|
2018-09-27 06:44:21 -04:00
|
|
|
dockerhubuploadlatest:
|
|
|
|
machine: true
|
|
|
|
steps:
|
|
|
|
- checkout
|
2018-09-28 07:36:35 -04:00
|
|
|
- run: docker build -f docker/Dockerfile -t matrixdotorg/synapse:${CIRCLE_SHA1} .
|
|
|
|
- run: docker build -f docker/Dockerfile -t matrixdotorg/synapse:${CIRCLE_SHA1}-py3 --build-arg PYTHON_VERSION=3.6 .
|
2018-09-27 06:44:21 -04:00
|
|
|
- run: docker login --username $DOCKER_HUB_USERNAME --password $DOCKER_HUB_PASSWORD
|
2018-09-28 07:36:35 -04:00
|
|
|
- run: docker tag matrixdotorg/synapse:${CIRCLE_SHA1} matrixdotorg/synapse:latest
|
|
|
|
- run: docker tag matrixdotorg/synapse:${CIRCLE_SHA1}-py3 matrixdotorg/synapse:latest-py3
|
|
|
|
- run: docker push matrixdotorg/synapse:${CIRCLE_SHA1}
|
|
|
|
- run: docker push matrixdotorg/synapse:${CIRCLE_SHA1}-py3
|
2018-09-27 06:44:21 -04:00
|
|
|
- run: docker push matrixdotorg/synapse:latest
|
2018-09-28 07:36:35 -04:00
|
|
|
- run: docker push matrixdotorg/synapse:latest-py3
|
2018-08-14 07:30:34 -04:00
|
|
|
sytestpy2:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy2
|
|
|
|
working_directory: /src
|
2018-08-14 07:30:34 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: /synapse_sytest.sh
|
2018-08-14 07:30:34 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
destination: logs
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
sytestpy2postgres:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy2
|
|
|
|
working_directory: /src
|
2018-08-14 07:30:34 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: POSTGRES=1 /synapse_sytest.sh
|
2018-08-14 07:30:34 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
destination: logs
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
sytestpy2merged:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy2
|
|
|
|
working_directory: /src
|
2018-09-12 09:29:21 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: bash .circleci/merge_base_branch.sh
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: /synapse_sytest.sh
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
destination: logs
|
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
sytestpy2postgresmerged:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy2
|
|
|
|
working_directory: /src
|
2018-09-12 09:29:21 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: bash .circleci/merge_base_branch.sh
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: POSTGRES=1 /synapse_sytest.sh
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
destination: logs
|
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
|
2018-08-14 07:30:34 -04:00
|
|
|
sytestpy3:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy3
|
|
|
|
working_directory: /src
|
2018-08-14 07:30:34 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: /synapse_sytest.sh
|
2018-08-14 07:30:34 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
destination: logs
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
sytestpy3postgres:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy3
|
|
|
|
working_directory: /src
|
2018-08-14 07:30:34 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: POSTGRES=1 /synapse_sytest.sh
|
2018-08-14 07:30:34 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
destination: logs
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
sytestpy3merged:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy3
|
|
|
|
working_directory: /src
|
2018-09-12 09:29:21 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: bash .circleci/merge_base_branch.sh
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: /synapse_sytest.sh
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
destination: logs
|
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
sytestpy3postgresmerged:
|
2018-10-16 10:29:08 -04:00
|
|
|
docker:
|
|
|
|
- image: matrixdotorg/sytest-synapsepy3
|
|
|
|
working_directory: /src
|
2018-09-12 09:29:21 -04:00
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- run: bash .circleci/merge_base_branch.sh
|
2018-10-16 10:29:08 -04:00
|
|
|
- run: POSTGRES=1 /synapse_sytest.sh
|
2018-09-12 09:29:21 -04:00
|
|
|
- store_artifacts:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-09-12 09:29:21 -04:00
|
|
|
destination: logs
|
|
|
|
- store_test_results:
|
2018-10-16 10:29:08 -04:00
|
|
|
path: /logs
|
2018-08-14 07:30:34 -04:00
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
|
|
|
build:
|
|
|
|
jobs:
|
2018-09-26 10:23:21 -04:00
|
|
|
- sytestpy2:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: /develop|master|release-.*/
|
|
|
|
- sytestpy2postgres:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: /develop|master|release-.*/
|
|
|
|
- sytestpy3:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: /develop|master|release-.*/
|
|
|
|
- sytestpy3postgres:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: /develop|master|release-.*/
|
2018-09-12 09:29:21 -04:00
|
|
|
- sytestpy2merged:
|
|
|
|
filters:
|
|
|
|
branches:
|
2018-09-26 10:23:21 -04:00
|
|
|
ignore: /develop|master|release-.*/
|
2018-09-12 09:29:21 -04:00
|
|
|
- sytestpy2postgresmerged:
|
|
|
|
filters:
|
|
|
|
branches:
|
2018-09-26 10:23:21 -04:00
|
|
|
ignore: /develop|master|release-.*/
|
2018-09-13 13:11:11 -04:00
|
|
|
- sytestpy3merged:
|
|
|
|
filters:
|
|
|
|
branches:
|
2018-09-26 10:23:21 -04:00
|
|
|
ignore: /develop|master|release-.*/
|
2018-09-13 13:11:11 -04:00
|
|
|
- sytestpy3postgresmerged:
|
|
|
|
filters:
|
|
|
|
branches:
|
2018-09-26 10:23:21 -04:00
|
|
|
ignore: /develop|master|release-.*/
|
2018-09-27 06:44:21 -04:00
|
|
|
- dockerhubuploadrelease:
|
2018-09-25 04:43:21 -04:00
|
|
|
filters:
|
|
|
|
tags:
|
2018-10-03 06:52:05 -04:00
|
|
|
only: /v[0-9].[0-9]+.[0-9]+.*/
|
2018-09-25 05:37:08 -04:00
|
|
|
branches:
|
|
|
|
ignore: /.*/
|
2018-09-27 06:44:21 -04:00
|
|
|
- dockerhubuploadlatest:
|
|
|
|
filters:
|
|
|
|
branches:
|
|
|
|
only: master
|