Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for presubmit (0.15 sec)

  1. .github/workflows/sigbuild-docker-presubmit.yml

    # limitations under the License.
    # ==============================================================================
    
    name: Build SIG Build containers as presubmits
    
    on:
      pull_request:
        types: [labeled, opened, synchronize, reopened]
        paths:
          - '.github/workflows/sigbuild-docker-presubmit.yml'
          - 'tensorflow/tools/tf_sig_build_dockerfiles/**'
          - '!tensorflow/tools/tf_sig_build_dockerfiles/README.md'
    
    permissions:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  2. .github/workflows/pylint-presubmit.yml

    Joyce Brum <******@****.***> 1694536829 +0000
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:40:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. tests/integration/tests.mk

    # Generate presubmit integration test targets for each component in kubernetes environment
    test.integration.%.kube.presubmit:
    	@make test.integration.$*.kube
    
    # Run all tests
    .PHONY: test.integration.kube
    test.integration.kube: test.integration.kube.presubmit
    	@:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. ci/official/wheel_test/README.md

    a Bazel command.
    5. Moves the updated `requirements_lock_<python_version>.txt` file
    to the `../wheel_test/` directory.
    
    
    ### How it Works in the Presubmit Job
    
    `_requirements_lock` files will be generated by the presubmit job. A detailed
    description will be provided once it's integrated into presubmit.
    
    ### test_import_api_packages
    
    This Python test verifies whether the API v2 packages can be imported from the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 31 18:17:57 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. 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)
  6. ci/official/README.md

    -   Nightly jobs (Run nightly on the `nightly` branch)
        -   Uses `wheel.sh`, `libtensorflow.sh`, `code_check_full.sh`
    -   Continuous jobs (Run on every GitHub commit)
        -   Uses `pycpp.sh`
    -   Presubmit jobs (Run on every GitHub PR)
        -   Uses `pycpp.sh`, `code_check_changed_files.sh`
    
    These "env" files match up with an environment matrix that roughly covers:
    
    -   Different Python versions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. common/scripts/tracing.sh

      fi
    }
    
    function _genattrs() {
      # No upstream standard, so copy from https://github.com/jenkinsci/opentelemetry-plugin/blob/master/docs/job-traces.md
      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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 28 15:25:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. prow/integ-suite-kind.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    
    # Usage: ./integ-suite-kind.sh TARGET
    # Example: ./integ-suite-kind.sh test.integration.pilot.kube.presubmit
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    ROOT=$(dirname "$WD")
    
    # Exit immediately for non zero status
    set -e
    # Check unset variables
    set -u
    # Print commands
    set -x
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 05:42:41 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. cluster/gce/gci/README.md

    following guidelines are proposed for image choice in E2E testing.
    
      * To run release blocking tests, the latest LTS images are preferred.
        'image' should be used to specify the image.
    
      * To run presubmit, postsubmit or periodic tests, the latest LTS images are
        preferred. If tests need two images, you can use the latest two LTS images.
        LTS images are stable and usually include latest bug and security fix.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 14:55:40 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. prow/lib.sh

      targets="docker.pilot docker.proxyv2 "
    
      # use ubuntu:jammy to test vms by default
      nonDistrolessTargets="docker.app docker.app_sidecar_ubuntu_noble docker.ext-authz "
      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
    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