Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setup_and_export_git_sha (0.26 sec)

  1. prow/benchtest.sh

    # limitations under the License.
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # shellcheck source=prow/lib.sh
    source "${ROOT}/prow/lib.sh"
    setup_and_export_git_sha
    
    set -eux
    
    GCS_BENCHMARK_DIR="${GCS_BENCHMARK_DIR:-istio-prow/benchmarks}"
    
    BENCHMARK_COUNT="${BENCHMARK_COUNT:-5}"
    BENCHMARK_CPUS="${BENCHMARK_CPUS:-8}"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 23:14:43 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. 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