diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-10 16:53:11 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2020-02-10 16:53:11 +0000 |
commit | 839626875277a12a5438ec7b3c09babebe05cc33 (patch) | |
tree | 1910c8313fe96c4e83ca93aba0d2263465dc5ca3 /.buildkite/pipeline.yml | |
parent | Merge pull request #5464 from matrix-org/erikj/3pid_remote_invite_state (diff) | |
parent | Move SyTest to Buildkite (#5459) (diff) | |
download | synapse-839626875277a12a5438ec7b3c09babebe05cc33.tar.xz |
Move SyTest to Buildkite (#5459)
Diffstat (limited to '.buildkite/pipeline.yml')
-rw-r--r-- | .buildkite/pipeline.yml | 56 |
1 files changed, 3 insertions, 53 deletions
diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 7c3e058f39..aa89d74248 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -2,6 +2,7 @@ env: CODECOV_TOKEN: "2dd7eb9b-0eda-45fe-a47c-9b5ac040045f" steps: + - command: - "python -m pip install tox" - "tox -e pep8" @@ -182,60 +183,9 @@ steps: - exit_status: 2 limit: 2 - - label: "SyTest - :python: 2.7 / :postgres: 9.6 / Monolith" - agents: - queue: "medium" - env: - POSTGRES: "1" - command: - - "bash .buildkite/merge_base_branch.sh" - - "bash /synapse_sytest.sh" - plugins: - - docker#v3.0.1: - image: "matrixdotorg/sytest-synapse:dinsic" - propagate-environment: true - always-pull: true - workdir: "/src" - entrypoint: "/bin/sh" - init: false - shell: ["-x", "-c"] - mount-buildkite-agent: false - volumes: ["./logs:/logs"] - - artifacts#v1.2.0: - upload: [ "logs/**/*.log", "logs/**/*.log.*", "logs/results.tap" ] - - matrix-org/annotate: - path: "logs/annotate.md" - style: "error" - - - label: "SyTest - :python: 2.7 / :postgres: 9.6 / Workers" - agents: - queue: "xlarge" - env: - POSTGRES: "1" - WORKERS: "1" - command: - - "bash .buildkite/merge_base_branch.sh" - - "bash /synapse_sytest.sh" - plugins: - - docker#v3.0.1: - image: "matrixdotorg/sytest-synapse:dinsic" - propagate-environment: true - always-pull: true - workdir: "/src" - entrypoint: "/bin/sh" - init: false - shell: ["-x", "-c"] - mount-buildkite-agent: false - volumes: ["./logs:/logs"] - - artifacts#v1.2.0: - upload: [ "logs/**/*.log", "logs/**/*.log.*", "logs/results.tap" ] - - matrix-org/annotate: - path: "logs/annotate.md" - style: "error" - - label: "SyTest - :python: 3 / :postgres: 9.6 / Monolith" agents: - queue: "medium" + queue: "xlarge" env: POSTGRES: "1" command: @@ -260,7 +210,7 @@ steps: - label: "SyTest - :python: 3 / :postgres: 9.6 / Workers" agents: - queue: "xlarge" + queue: "medium" env: POSTGRES: "1" WORKERS: "1" |