You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by sa...@apache.org on 2018/03/07 17:05:43 UTC

[geode] branch develop updated: GEODE-4777: Add UITest job to concourse develop pipeline (#1571)

This is an automated email from the ASF dual-hosted git repository.

sai_boorlagadda pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode.git


The following commit(s) were added to refs/heads/develop by this push:
     new 7ab0c6b  GEODE-4777: Add UITest job to concourse develop pipeline (#1571)
7ab0c6b is described below

commit 7ab0c6bee8efcca72a0d341e1167dd196ebe157b
Author: Sai Boorlagadda <sa...@gmail.com>
AuthorDate: Wed Mar 7 09:05:40 2018 -0800

    GEODE-4777: Add UITest job to concourse develop pipeline (#1571)
---
 ci/pipelines/develop.yml | 56 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 56 insertions(+)

diff --git a/ci/pipelines/develop.yml b/ci/pipelines/develop.yml
index e637287..dc7d1ed 100644
--- a/ci/pipelines/develop.yml
+++ b/ci/pipelines/develop.yml
@@ -86,6 +86,22 @@ resources:
       password: ((!source-email-password))
     from: ((!source-email-address))
     to: [ ((!notification-email-address)) ]
+
+groups:
+- name: main
+  jobs:
+  - Build
+  - DistributedTest
+  - AcceptanceTest
+  - IntegrationTest
+  - FlakyTest
+  - TestExamples
+  - UpdatePassingRef
+- name: UITests
+  jobs:
+  - Build
+  - UITests
+
 jobs:
 - name: Build
   serial: true
@@ -390,6 +406,46 @@ jobs:
                - flakytestfiles
                path: geode-ci/ci/scripts/test-archive.sh
 
+- name: UITests
+  serial: true
+  public: true
+  plan:
+    - aggregate:
+      - get: geode
+        passed: [Build]
+        trigger: true
+      - get: geode-ci
+      - get: geode-build-version
+        passed: [Build]
+      - get: docker-test-image
+        params:
+          rootfs: true
+    - task: runtests
+      privileged: true
+      timeout: 1h
+      config:
+        inputs:
+          - name: geode
+          - name: geode-ci
+          - name: docker-test-image
+          - name: geode-build-version
+        platform: linux
+        outputs:
+          - name: built-geode
+        image_resource: *docker-geode-build-image
+        params:
+          MAINTENANCE_VERSION: ((!maintenance-version))
+          SERVICE_ACCOUNT: ((!concourse-gcp-account))
+          PUBLIC_BUCKET: ((!public-bucket))
+          PARALLEL_DUNIT: true
+          DUNIT_PARALLEL_FORKS: 1
+          CALL_STACK_TIMEOUT: 25200
+        run:
+          args:
+          - uiTest
+          - uitestfiles
+          path: geode-ci/ci/scripts/test-run.sh
+
 - name: TestExamples
   serial: true
   public: true

-- 
To stop receiving notification emails like this one, please contact
sai_boorlagadda@apache.org.