From 84eaee8a0bd69139f64323bd46b219c65a2b7f14 Mon Sep 17 00:00:00 2001 From: Andrew Morgan Date: Mon, 2 Sep 2019 15:31:35 +0100 Subject: [PATCH] Remove CircleCI --- .ci/README.md | 7 +++++++ {.circleci => .ci}/matrix_key.pem | 0 {.circleci => .ci}/server.key | 0 .circleci/config.yml | 32 ------------------------------- 4 files changed, 7 insertions(+), 32 deletions(-) create mode 100644 .ci/README.md rename {.circleci => .ci}/matrix_key.pem (100%) rename {.circleci => .ci}/server.key (100%) delete mode 100644 .circleci/config.yml diff --git a/.ci/README.md b/.ci/README.md new file mode 100644 index 000000000..c0089c5d0 --- /dev/null +++ b/.ci/README.md @@ -0,0 +1,7 @@ +# Continuous Integration + +This is a folder containing files necessary for Dendrite's Continuous +Integration. Currently this folder only contains files that are necessary to +run a live version of Dendrite. All of our continuous integration is done using +[Buildkite](https://buildkite.com) - the pipeline for which can be found in +Matrix.org's [pipelines repository](https://github.com/matrix-org/pipelines). diff --git a/.circleci/matrix_key.pem b/.ci/matrix_key.pem similarity index 100% rename from .circleci/matrix_key.pem rename to .ci/matrix_key.pem diff --git a/.circleci/server.key b/.ci/server.key similarity index 100% rename from .circleci/server.key rename to .ci/server.key diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 8b6f4db02..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,32 +0,0 @@ -version: 2 -jobs: - dendrite: - docker: - - image: matrixdotorg/sytest-dendrite - working_directory: /src - steps: - - checkout - - # Set up dendrite - - run: - name: Build Dendrite - command: ./build.sh - - run: - name: Copy dummy keys to root - command: | - mv .circleci/matrix_key.pem . - mv .circleci/server.key . - - run: - name: Run sytest with whitelisted tests - command: /dendrite_sytest.sh - - - store_artifacts: - path: /logs - destination: logs - - store_test_results: - path: /logs -workflows: - version: 2 - build: - jobs: - - dendrite