diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-23 11:39:18 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-03-23 11:39:18 +0000 |
commit | 874c98a7c75f236b56a63833f146bb413da3ed15 (patch) | |
tree | 3156fd8effb20e31331e7ac9a37f5654b51fda61 /.buildkite | |
parent | Avoid attribute error when `password_config` present but empty (#6753) (diff) | |
parent | Remove unused CI docker compose files (#6754) (diff) | |
download | synapse-874c98a7c75f236b56a63833f146bb413da3ed15.tar.xz |
Remove unused CI docker compose files (#6754)
* commit '2093f83ea': Remove unused CI docker compose files (#6754)
Diffstat (limited to '.buildkite')
-rw-r--r-- | .buildkite/docker-compose.py35.pg95.yaml | 22 | ||||
-rw-r--r-- | .buildkite/docker-compose.py37.pg11.yaml | 22 | ||||
-rw-r--r-- | .buildkite/docker-compose.py37.pg95.yaml | 22 |
3 files changed, 0 insertions, 66 deletions
diff --git a/.buildkite/docker-compose.py35.pg95.yaml b/.buildkite/docker-compose.py35.pg95.yaml deleted file mode 100644 index 43237b7775..0000000000 --- a/.buildkite/docker-compose.py35.pg95.yaml +++ /dev/null @@ -1,22 +0,0 @@ -version: '3.1' - -services: - - postgres: - image: postgres:9.5 - environment: - POSTGRES_PASSWORD: postgres - command: -c fsync=off - - testenv: - image: python:3.5 - depends_on: - - postgres - env_file: .env - environment: - SYNAPSE_POSTGRES_HOST: postgres - SYNAPSE_POSTGRES_USER: postgres - SYNAPSE_POSTGRES_PASSWORD: postgres - working_dir: /src - volumes: - - ..:/src diff --git a/.buildkite/docker-compose.py37.pg11.yaml b/.buildkite/docker-compose.py37.pg11.yaml deleted file mode 100644 index b767228147..0000000000 --- a/.buildkite/docker-compose.py37.pg11.yaml +++ /dev/null @@ -1,22 +0,0 @@ -version: '3.1' - -services: - - postgres: - image: postgres:11 - environment: - POSTGRES_PASSWORD: postgres - command: -c fsync=off - - testenv: - image: python:3.7 - depends_on: - - postgres - env_file: .env - environment: - SYNAPSE_POSTGRES_HOST: postgres - SYNAPSE_POSTGRES_USER: postgres - SYNAPSE_POSTGRES_PASSWORD: postgres - working_dir: /src - volumes: - - ..:/src diff --git a/.buildkite/docker-compose.py37.pg95.yaml b/.buildkite/docker-compose.py37.pg95.yaml deleted file mode 100644 index 02fcd28304..0000000000 --- a/.buildkite/docker-compose.py37.pg95.yaml +++ /dev/null @@ -1,22 +0,0 @@ -version: '3.1' - -services: - - postgres: - image: postgres:9.5 - environment: - POSTGRES_PASSWORD: postgres - command: -c fsync=off - - testenv: - image: python:3.7 - depends_on: - - postgres - env_file: .env - environment: - SYNAPSE_POSTGRES_HOST: postgres - SYNAPSE_POSTGRES_USER: postgres - SYNAPSE_POSTGRES_PASSWORD: postgres - working_dir: /src - volumes: - - ..:/src |