Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for presubmits (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. .bazelrc

    # ARM64 PYCPP
    # In Linux Arm64 presubmit/continuous build, we cross-compile the binaries on
    # Linux x86 so that we can use RBE. Since tests still need to run on the single
    # host Arm64 machine, the build becomes too slow (~30 min) to be a presubmit.
    # For testing purposes, we want to see the runtime performance of an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage.go

    // preserving values that we allocated on their behalf.  For example, they
    // might create a Service without specifying the ClusterIP, in which case we
    // allocate one.  If they resubmit that same YAML, we want it to succeed.
    func patchAllocatedValues(after After, before Before) {
    	oldSvc, newSvc := before.Service, after.Service
    
    	if needsClusterIP(oldSvc) && needsClusterIP(newSvc) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top