Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PROW_ARTIFACTS_BASE (0.51 sec)

  1. common/scripts/check_clean_repo.sh

          rm "${PATCH_OUT}"
          echo "WARNING: patch file was too large to persist ($(du -h "${PATCH_OUT}"))"
          return 0
        fi
        outName="artifacts/${PATCH_OUT#"${ARTIFACTS}"/}"
        patchFile="${PROW_ARTIFACTS_BASE:-https://gcsweb.istio.io/gcs/istio-prow}/pr-logs/pull/${REPO_OWNER}_${REPO_NAME}/${PULL_NUMBER}/${JOB_NAME}/${BUILD_ID}/${outName}"
        echo "You can also try applying the patch file from the build artifacts:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 11 22:57:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. pkg/test/prow/util.go

    import (
    	"fmt"
    	"net/url"
    	"strings"
    
    	"istio.io/istio/pkg/env"
    )
    
    var (
    	runningInCI   = env.Register("CI", false, "If true, indicates we are running in CI").Get()
    	artifactsBase = env.Register("PROW_ARTIFACTS_BASE", "https://gcsweb.istio.io/gcs/istio-prow", "the base url for prow artifacts").Get()
    	// https://github.com/kubernetes/test-infra/blob/master/prow/jobs.md#job-environment-variables
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. Makefile.core.mk

    endif
    
    PULL_POLICY ?= IfNotPresent
    ifeq ($(TAG),latest)
      PULL_POLICY = Always
    endif
    ifeq ($(PULL_POLICY),)
      $(error "PULL_POLICY cannot be empty")
    endif
    
    PROW_ARTIFACTS_BASE ?= https://gcsweb.istio.io/gcs/istio-prow
    
    include tools/proto/proto.mk
    
    .PHONY: default
    default: init build test
    
    .PHONY: init
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top