Changeset 62f96ae for Jenkinsfile


Ignore:
Timestamp:
Mar 10, 2020, 3:39:09 PM (4 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
c862fae
Parents:
aa96fba
Message:

Added old build discarder to jenkins

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    raa96fba r62f96ae  
    186186                echo "Archiving core dumps"
    187187                dir (BuildDir) {
    188                         archiveArtifacts artifacts: "tests/crashes/**/*,lib/*", fingerprint: true
     188                        archiveArtifacts artifacts: "tests/crashes/**/*,lib/**/lib*.so*", fingerprint: true
    189189                }
    190190                throw err
     
    447447def prepare_build() {
    448448        // prepare the properties
     449        properties([])
    449450        properties ([                                                                                                   \
     451                buildDiscarder(logRotator(                                                                              \
     452                        artifactDaysToKeepStr: '',                                                                      \
     453                        artifactNumToKeepStr: '',                                                                       \
     454                        daysToKeepStr: '730',                                                                           \
     455                        numToKeepStr: '1000'                                                                            \
     456                )),                                                                                                             \
    450457                [$class: 'ParametersDefinitionProperty',                                                                \
    451458                        parameterDefinitions: [                                                                         \
Note: See TracChangeset for help on using the changeset viewer.