Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for REPO_OWNER (0.11 sec)

  1. common/scripts/tracing.sh

      if [[ -n "${PULL_NUMBER:=}" ]]
      then
        # Presubmit
        url="https://prow.istio.io/view/gs/istio-prow/pr-logs/pull/${REPO_OWNER}_${REPO_NAME}/${PULL_NUMBER}/${JOB_NAME}/${BUILD_ID},"
      else
        # Postsubmit or periodic
        url="https://prow.istio.io/view/gs/istio-prow/pr-logs/${JOB_NAME}/${BUILD_ID},"
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. common/scripts/check_clean_repo.sh

          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:
    
    git apply <(curl -sL \"${patchFile}\")
    "
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 11 22:57:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pkg/test/prow/util.go

    	jobName    = env.Register("JOB_NAME", "", "name of job").Get()
    	pullNumber = env.Register("PULL_NUMBER", "", "PR of job").Get()
    	repoName   = env.Register("REPO_NAME", "istio", "repo name").Get()
    	repoOwner  = env.Register("REPO_OWNER", "istio", "repo owner").Get()
    	buildID    = env.Register("BUILD_ID", "", "build id").Get()
    	artifacts  = env.Register("ARTIFACTS", "", "artifacts base").Get()
    )
    
    func ArtifactsURL(filename string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top