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

mmartell pushed a commit to branch GEODE-9356-create-ci
in repository https://gitbox.apache.org/repos/asf/geode-dotnet-core-client.git

commit 74c589be5428fed24688f392afe87dd9e1bbfb98
Author: Mike Martell <mmart...@pivotal.io>
AuthorDate: Sun Jun 13 15:43:48 2021 -0700

    Remove unnecessary tasks
---
 ci/pipeline.yml | 350 +-------------------------------------------------------
 1 file changed, 1 insertion(+), 349 deletions(-)

diff --git a/ci/pipeline.yml b/ci/pipeline.yml
index df78a79..b4a94ef 100644
--- a/ci/pipeline.yml
+++ b/ci/pipeline.yml
@@ -473,359 +473,11 @@ jobs:
             function remote_upload {
               scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
             }
-            remote_shell cmake -E chdir build/cppcache/test ctest -C 
${CMAKE_CONFIG} -j8 --timeout=300 --output-on-failure --repeat until-pass:4 
--schedule-random
-          path: bash
-      image: task-image
-      task: cpp-unit-tests
-      timeout: 30m
-    - config:
-        inputs:
-        - name: instance
-        params:
-          CMAKE_BUILD_FLAGS: /m
-          CMAKE_CONFIG: Debug
-          CMAKE_CONFIGURE_FLAGS: -A x64 -Tv141,version=14.16,host=x64 
-DCMAKE_SYSTEM_VERSION=10.0.16299.0
-          CPACK_GENERATORS: ZIP
-        platform: linux
-        run:
-          args:
-          - -c
-          - |-
-            set -ueo pipefail
-            INSTANCE_USER=build
-            INSTANCE_DIR=$(pwd)/instance
-
-            if [ ! -d "${INSTANCE_DIR}" ]; then
-              echo "${INSTANCE_DIR} not found."
-              exit 1
-            fi
-
-            SSH_OPTIONS=${SSH_OPTIONS:-"-o StrictHostKeyChecking=no -o 
PasswordAuthentication=no"}
-
-            ssh_key_file=${INSTANCE_DIR}/identity
-            if [ ! -r "${ssh_key_file}" ]; then
-              echo "${ssh_key_file} not readable."
-              exit 1
-            fi
-
-            instance_file=${INSTANCE_DIR}/instance.sh
-            if [ ! -r "${instance_file}" ]; then
-              echo "${instance_file} not readable."
-              exit 1
-            fi
-
-            external_ip=$(source ${instance_file} && echo -n 
${networkInterfaces_accessConfigs_natIP})
-
-            function remote_shell {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} "$@"
-            }
-
-            function remote_download {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r 
"${INSTANCE_USER}@${external_ip}:${1}" "$2"
-            }
-
-            function remote_download_directory {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} tar -C $(dirname ${1}) -czf - $(basename ${1}) 
| tar -C ${2} -zxf -
-            }
-
-            function remote_upload {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
-            }
-            remote_shell cmake -E chdir build/cppcache/integration/test ctest 
-C ${CMAKE_CONFIG} -j4 --timeout=300 --output-on-failure --repeat until-pass:4 
--schedule-random
-          path: bash
-      image: task-image
-      task: cpp-integration-tests
-      timeout: 1h
-    - config:
-        inputs:
-        - name: instance
-        params:
-          CMAKE_BUILD_FLAGS: /m
-          CMAKE_CONFIG: Debug
-          CMAKE_CONFIGURE_FLAGS: -A x64 -Tv141,version=14.16,host=x64 
-DCMAKE_SYSTEM_VERSION=10.0.16299.0
-          CPACK_GENERATORS: ZIP
-        platform: linux
-        run:
-          args:
-          - -c
-          - |-
-            set -ueo pipefail
-            INSTANCE_USER=build
-            INSTANCE_DIR=$(pwd)/instance
-
-            if [ ! -d "${INSTANCE_DIR}" ]; then
-              echo "${INSTANCE_DIR} not found."
-              exit 1
-            fi
-
-            SSH_OPTIONS=${SSH_OPTIONS:-"-o StrictHostKeyChecking=no -o 
PasswordAuthentication=no"}
-
-            ssh_key_file=${INSTANCE_DIR}/identity
-            if [ ! -r "${ssh_key_file}" ]; then
-              echo "${ssh_key_file} not readable."
-              exit 1
-            fi
-
-            instance_file=${INSTANCE_DIR}/instance.sh
-            if [ ! -r "${instance_file}" ]; then
-              echo "${instance_file} not readable."
-              exit 1
-            fi
-
-            external_ip=$(source ${instance_file} && echo -n 
${networkInterfaces_accessConfigs_natIP})
-
-            function remote_shell {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} "$@"
-            }
-
-            function remote_download {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r 
"${INSTANCE_USER}@${external_ip}:${1}" "$2"
-            }
-
-            function remote_download_directory {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} tar -C $(dirname ${1}) -czf - $(basename ${1}) 
| tar -C ${2} -zxf -
-            }
-
-            function remote_upload {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
-            }
-            remote_shell cmake -E chdir build/cppcache/integration-test ctest 
-C ${CMAKE_CONFIG} -j4 --timeout=500 --output-on-failure --repeat until-pass:4 
--schedule-random
-          path: bash
-      image: task-image
-      task: cpp-legacy-integration-tests
-      timeout: 2h
-    - config:
-        inputs:
-        - name: instance
-        params:
-          CMAKE_BUILD_FLAGS: /m
-          CMAKE_CONFIG: Debug
-          CMAKE_CONFIGURE_FLAGS: -A x64 -Tv141,version=14.16,host=x64 
-DCMAKE_SYSTEM_VERSION=10.0.16299.0
-          CPACK_GENERATORS: ZIP
-        platform: linux
-        run:
-          args:
-          - -c
-          - |-
-            set -ueo pipefail
-            INSTANCE_USER=build
-            INSTANCE_DIR=$(pwd)/instance
-
-            if [ ! -d "${INSTANCE_DIR}" ]; then
-              echo "${INSTANCE_DIR} not found."
-              exit 1
-            fi
-
-            SSH_OPTIONS=${SSH_OPTIONS:-"-o StrictHostKeyChecking=no -o 
PasswordAuthentication=no"}
-
-            ssh_key_file=${INSTANCE_DIR}/identity
-            if [ ! -r "${ssh_key_file}" ]; then
-              echo "${ssh_key_file} not readable."
-              exit 1
-            fi
-
-            instance_file=${INSTANCE_DIR}/instance.sh
-            if [ ! -r "${instance_file}" ]; then
-              echo "${instance_file} not readable."
-              exit 1
-            fi
-
-            external_ip=$(source ${instance_file} && echo -n 
${networkInterfaces_accessConfigs_natIP})
-
-            function remote_shell {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} "$@"
-            }
-
-            function remote_download {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r 
"${INSTANCE_USER}@${external_ip}:${1}" "$2"
-            }
-
-            function remote_download_directory {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} tar -C $(dirname ${1}) -czf - $(basename ${1}) 
| tar -C ${2} -zxf -
-            }
-
-            function remote_upload {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
-            }
-            remote_shell cmake -E chdir build/clicache/test ctest -C 
${CMAKE_CONFIG} -j8 --timeout=300 --output-on-failure --repeat until-pass:4 
--schedule-random
-          path: bash
-      image: task-image
-      task: net-unmanaged-unit-tests
-      timeout: 10m
-    - config:
-        inputs:
-        - name: instance
-        params:
-          CMAKE_BUILD_FLAGS: /m
-          CMAKE_CONFIG: Debug
-          CMAKE_CONFIGURE_FLAGS: -A x64 -Tv141,version=14.16,host=x64 
-DCMAKE_SYSTEM_VERSION=10.0.16299.0
-          CPACK_GENERATORS: ZIP
-        platform: linux
-        run:
-          args:
-          - -c
-          - |-
-            set -ueo pipefail
-            INSTANCE_USER=build
-            INSTANCE_DIR=$(pwd)/instance
-
-            if [ ! -d "${INSTANCE_DIR}" ]; then
-              echo "${INSTANCE_DIR} not found."
-              exit 1
-            fi
-
-            SSH_OPTIONS=${SSH_OPTIONS:-"-o StrictHostKeyChecking=no -o 
PasswordAuthentication=no"}
-
-            ssh_key_file=${INSTANCE_DIR}/identity
-            if [ ! -r "${ssh_key_file}" ]; then
-              echo "${ssh_key_file} not readable."
-              exit 1
-            fi
-
-            instance_file=${INSTANCE_DIR}/instance.sh
-            if [ ! -r "${instance_file}" ]; then
-              echo "${instance_file} not readable."
-              exit 1
-            fi
-
-            external_ip=$(source ${instance_file} && echo -n 
${networkInterfaces_accessConfigs_natIP})
-
-            function remote_shell {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} "$@"
-            }
-
-            function remote_download {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r 
"${INSTANCE_USER}@${external_ip}:${1}" "$2"
-            }
-
-            function remote_download_directory {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} tar -C $(dirname ${1}) -czf - $(basename ${1}) 
| tar -C ${2} -zxf -
-            }
-
-            function remote_upload {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
-            }
-            remote_shell cmake -E chdir build/clicache/test2 ctest -C 
${CMAKE_CONFIG} -j8 --timeout=300 --output-on-failure --repeat until-pass:4 
--schedule-random
-          path: bash
-      image: task-image
-      task: net-unit-tests
-      timeout: 30m
-    - config:
-        inputs:
-        - name: instance
-        params:
-          CMAKE_BUILD_FLAGS: /m
-          CMAKE_CONFIG: Debug
-          CMAKE_CONFIGURE_FLAGS: -A x64 -Tv141,version=14.16,host=x64 
-DCMAKE_SYSTEM_VERSION=10.0.16299.0
-          CPACK_GENERATORS: ZIP
-        platform: linux
-        run:
-          args:
-          - -c
-          - |-
-            set -ueo pipefail
-            INSTANCE_USER=build
-            INSTANCE_DIR=$(pwd)/instance
-
-            if [ ! -d "${INSTANCE_DIR}" ]; then
-              echo "${INSTANCE_DIR} not found."
-              exit 1
-            fi
-
-            SSH_OPTIONS=${SSH_OPTIONS:-"-o StrictHostKeyChecking=no -o 
PasswordAuthentication=no"}
-
-            ssh_key_file=${INSTANCE_DIR}/identity
-            if [ ! -r "${ssh_key_file}" ]; then
-              echo "${ssh_key_file} not readable."
-              exit 1
-            fi
-
-            instance_file=${INSTANCE_DIR}/instance.sh
-            if [ ! -r "${instance_file}" ]; then
-              echo "${instance_file} not readable."
-              exit 1
-            fi
-
-            external_ip=$(source ${instance_file} && echo -n 
${networkInterfaces_accessConfigs_natIP})
-
-            function remote_shell {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} "$@"
-            }
-
-            function remote_download {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r 
"${INSTANCE_USER}@${external_ip}:${1}" "$2"
-            }
-
-            function remote_download_directory {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} tar -C $(dirname ${1}) -czf - $(basename ${1}) 
| tar -C ${2} -zxf -
-            }
-
-            function remote_upload {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
-            }
             remote_shell cmake -E chdir build/clicache/integration-test2 ctest 
-C ${CMAKE_CONFIG} -j6 --timeout=300 --output-on-failure --repeat until-pass:4 
--schedule-random
           path: bash
       image: task-image
-      task: net-integration-tests
+      task: netcore-integration-tests
       timeout: 1h
-    - config:
-        inputs:
-        - name: instance
-        params:
-          CMAKE_BUILD_FLAGS: /m
-          CMAKE_CONFIG: Debug
-          CMAKE_CONFIGURE_FLAGS: -A x64 -Tv141,version=14.16,host=x64 
-DCMAKE_SYSTEM_VERSION=10.0.16299.0
-          CPACK_GENERATORS: ZIP
-        platform: linux
-        run:
-          args:
-          - -c
-          - |-
-            set -ueo pipefail
-            INSTANCE_USER=build
-            INSTANCE_DIR=$(pwd)/instance
-
-            if [ ! -d "${INSTANCE_DIR}" ]; then
-              echo "${INSTANCE_DIR} not found."
-              exit 1
-            fi
-
-            SSH_OPTIONS=${SSH_OPTIONS:-"-o StrictHostKeyChecking=no -o 
PasswordAuthentication=no"}
-
-            ssh_key_file=${INSTANCE_DIR}/identity
-            if [ ! -r "${ssh_key_file}" ]; then
-              echo "${ssh_key_file} not readable."
-              exit 1
-            fi
-
-            instance_file=${INSTANCE_DIR}/instance.sh
-            if [ ! -r "${instance_file}" ]; then
-              echo "${instance_file} not readable."
-              exit 1
-            fi
-
-            external_ip=$(source ${instance_file} && echo -n 
${networkInterfaces_accessConfigs_natIP})
-
-            function remote_shell {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} "$@"
-            }
-
-            function remote_download {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r 
"${INSTANCE_USER}@${external_ip}:${1}" "$2"
-            }
-
-            function remote_download_directory {
-              ssh ${SSH_OPTIONS} -i ${ssh_key_file} 
${INSTANCE_USER}@${external_ip} tar -C $(dirname ${1}) -czf - $(basename ${1}) 
| tar -C ${2} -zxf -
-            }
-
-            function remote_upload {
-              scp ${SSH_OPTIONS} -i ${ssh_key_file} -q -r "$1" 
"${INSTANCE_USER}@${external_ip}:${2}"
-            }
-            remote_shell cmake -E chdir build/clicache/integration-test ctest 
-C ${CMAKE_CONFIG} -j4 --timeout=500 --output-on-failure --repeat until-pass:4 
--schedule-random
-          path: bash
-      image: task-image
-      task: net-legacy-integration-tests
-      timeout: 2h
     ensure:
       in_parallel:
         steps:

Reply via email to