Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for skipDefaultCheckout (0.13 sec)

  1. Jenkinsfile

    #!groovy
    
    pipeline {
      agent none
      // save some io during the build
      options {
        skipDefaultCheckout()
        durabilityHint('PERFORMANCE_OPTIMIZED')
        disableRestartFromStage()
      }
      stages {
        stage("Build / Test - JDK17") {
          agent { node { label 'ubuntu' } }
          steps {
            timeout(time: 210, unit: 'MINUTES') {
              checkout scm
              mavenBuild("jdk_17_latest", "")
              script {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 10 12:31:48 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top