Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setup_and_export_git_sha (0.3 sec)

  1. prow/integ-suite-kind.sh

    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    # Print commands
    set -x
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    setup_and_export_git_sha
    
    # shellcheck source=common/scripts/kind_provisioner.sh
    source "${ROOT}/common/scripts/kind_provisioner.sh"
    
    TOPOLOGY=SINGLE_CLUSTER
    NODE_IMAGE="gcr.io/istio-testing/kind-node:v1.30.0"
    KIND_CONFIG=""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. prow/lib.sh

        docker-credential-gcr configure-docker --registries=-us-docker.pkg.dev
      else
        echo "No credential helpers found, push to docker may not function properly"
      fi
    }
    
    function setup_and_export_git_sha() {
      if [[ -n "${CI:-}" ]]; then
    
        if [ -z "${PULL_PULL_SHA:-}" ]; then
          if [ -z "${PULL_BASE_SHA:-}" ]; then
            GIT_SHA="$(git rev-parse --verify HEAD)"
            export GIT_SHA
          else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top