git subrepo clone https://github.com/mailcow/mailcow-dockerized.git mailcow/src/mailcow-dockerized

subrepo: subdir:   "mailcow/src/mailcow-dockerized"
  merged:   "a832becb"
upstream: origin:   "https://github.com/mailcow/mailcow-dockerized.git"
  branch:   "master"
  commit:   "a832becb"
git-subrepo: version:  "0.4.3"
  origin:   "???"
  commit:   "???"
Change-Id: If5be2d621a211e164c9b6577adaa7884449f16b5
diff --git a/mailcow/src/mailcow-dockerized/.drone.yml b/mailcow/src/mailcow-dockerized/.drone.yml
new file mode 100644
index 0000000..acc2263
--- /dev/null
+++ b/mailcow/src/mailcow-dockerized/.drone.yml
@@ -0,0 +1,114 @@
+---
+kind: pipeline
+name: integration-testing
+
+platform:
+  os: linux
+  arch: amd64
+
+clone:
+  disable: true
+
+steps:
+- name: prepare-tests
+  pull: default
+  image: timovibritannia/ansible
+  commands:
+  - git clone https://github.com/mailcow/mailcow-integration-tests.git --branch $(curl -sL https://api.github.com/repos/mailcow/mailcow-integration-tests/releases/latest | jq -r '.tag_name') --single-branch .
+  - chmod +x ci.sh
+  - chmod +x ci-ssh.sh
+  - chmod +x ci-piprequierments.sh
+  - ./ci.sh
+  - wget -O group_vars/all/secrets.yml $SECRETS_DOWNLOAD_URL --quiet
+  environment:
+    SECRETS_DOWNLOAD_URL:
+      from_secret: SECRETS_DOWNLOAD_URL
+    VAULT_PW:
+      from_secret: VAULT_PW
+  when:
+    branch:
+    - master
+    event:
+    - push
+
+- name: lint
+  pull: default
+  image: timovibritannia/ansible
+  commands:
+  - ansible-lint ./
+  when:
+    branch:
+    - master
+    event:
+    - push
+
+- name: create-server
+  pull: default
+  image: timovibritannia/ansible
+  commands:
+  - ./ci-piprequierments.sh
+  - ansible-playbook mailcow-start-server.yml --diff
+  - ./ci-ssh.sh
+  environment:
+    ANSIBLE_HOST_KEY_CHECKING: false
+    ANSIBLE_FORCE_COLOR: true
+  when:
+    branch:
+    - master
+    event:
+    - push
+
+- name: setup-server
+  pull: default
+  image: timovibritannia/ansible
+  commands:
+  - sleep 120
+  - ./ci-piprequierments.sh
+  - ansible-playbook mailcow-setup-server.yml --private-key /drone/src/id_ssh_rsa --diff
+  environment:
+    ANSIBLE_HOST_KEY_CHECKING: false
+    ANSIBLE_FORCE_COLOR: true
+  when:
+    branch:
+    - master
+    event:
+    - push
+
+- name: run-tests
+  pull: default
+  image: timovibritannia/ansible
+  commands:
+  - ./ci-piprequierments.sh
+  - ansible-playbook mailcow-integration-tests.yml --private-key /drone/src/id_ssh_rsa --diff
+  environment:
+    ANSIBLE_HOST_KEY_CHECKING: false
+    ANSIBLE_FORCE_COLOR: true
+  when:
+    branch:
+    - master
+    event:
+    - push
+
+- name: delete-server
+  pull: default
+  image: timovibritannia/ansible
+  commands:
+  - ./ci-piprequierments.sh
+  - ansible-playbook mailcow-delete-server.yml --diff
+  environment:
+    ANSIBLE_HOST_KEY_CHECKING: false
+    ANSIBLE_FORCE_COLOR: true
+  when:
+    branch:
+    - master
+    event:
+    - push
+    status:
+    - failure
+    - success
+
+---
+kind: signature
+hmac: 78793b0d115828cf74f6dbac3341205c6d48ef2e59661529f3412f2fac3831a9
+
+...