Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. Jenkinsfile

        }
        throw e
    } catch (InterruptedException e) {
        echo "[FAILURE-004] ${e}"
        currentBuild.result = "ABORTED"
        throw e
    } catch (Throwable e) {
        echo "[FAILURE-001] ${e}"
        currentBuild.result = "FAILURE"
        throw e
    } finally {
        // notify completion
        stage("Notifications") {
            jenkinsNotify()
        }
    }
    
    def archiveDirs(stageId, archives) {
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top