Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for JOB_TYPE (0.12 sec)

  1. prow/lib.sh

      if [[ "${JOB_TYPE:-presubmit}" == "postsubmit" ]]; then
        # We run tests across all VM types only in postsubmit
        nonDistrolessTargets+="docker.app_sidecar_ubuntu_bionic docker.app_sidecar_debian_12 docker.app_sidecar_rockylinux_9 "
      fi
      if [[ "${SELECT_TEST}" == "test.integration.operator.kube" || "${SELECT_TEST}" == "test.integration.kube" || "${JOB_TYPE:-postsubmit}" == "postsubmit" ]]; then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. tests/integration/tests.mk

    endif
    
    ifneq ($(VARIANT),)
        _INTEGRATION_TEST_FLAGS += --istio.test.variant=$(VARIANT)
    endif
    
    _INTEGRATION_TEST_SELECT_FLAGS ?= --istio.test.select=$(TEST_SELECT)
    ifneq ($(JOB_TYPE),postsubmit)
    	_INTEGRATION_TEST_SELECT_FLAGS:="$(_INTEGRATION_TEST_SELECT_FLAGS),-postsubmit"
    endif
    
    # both ipv6 only and dual stack support ipv6
    support_ipv6 =
    ifeq ($(IP_FAMILY),ipv6)
    	support_ipv6 = yes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. pkg/test/prow/util.go

    	// https://github.com/kubernetes/test-infra/blob/master/prow/jobs.md#job-environment-variables
    	jobType    = env.Register("JOB_TYPE", "presubmit", "type of job").Get()
    	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()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. common/scripts/tracing.sh

        url="https://prow.istio.io/view/gs/istio-prow/pr-logs/${JOB_NAME}/${BUILD_ID},"
      fi
      # Use printf instead of echo to avoid spaces between args
      printf '%s' "ci.pipeline.id=${JOB_NAME},"\
        "ci.pipeline.type=${JOB_TYPE},"\
        "ci.pipeline.run.url=${url}"\
        "ci.pipeline.run.number=${BUILD_ID},"\
        "ci.pipeline.run.id=${PROW_JOB_ID},"\
        "ci.pipeline.run.repo=${REPO_OWNER:-unknown}/${REPO_NAME:-unknown},"\
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top