Changeset bae0d35 for Jenkinsfile


Ignore:
Timestamp:
Jun 7, 2021, 2:09:12 PM (5 years ago)
Author:
caparsons <caparson@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
5a46e09
Parents:
82f4063 (diff), 53692b3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Jenkinsfile

    r82f4063 rbae0d35  
    2929                                BuildDir  = pwd tmp: true
    3030                                SrcDir    = pwd tmp: false
     31                                currentBuild.description = "${currentBuild.description} on ${env.NODE_NAME}"
    3132
    3233                                Tools.Clean()
     
    171172                echo "Archiving core dumps"
    172173                dir (BuildDir) {
    173                         archiveArtifacts artifacts: "tests/crashes/**/*,lib/**/lib*.so*", fingerprint: true
     174                        def exists = fileExists 'tests/crashes'
     175                        if( exists ) {
     176                                sh """${SrcDir}/tools/jenkins/archive-gen.sh"""
     177                                archiveArtifacts artifacts: "tests/crashes/**/*,lib/**/lib*.so*,setup.sh", fingerprint: true
     178                        }
    174179                }
    175180                throw err
Note: See TracChangeset for help on using the changeset viewer.