Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for durabilityHint (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  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 {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Jul 10 12:31:48 GMT 2025
    - 2K bytes
    - Click Count (0)
Back to Top