Changeset aa96fba
- Timestamp:
- Mar 10, 2020, 2:51:57 PM (5 years ago)
- 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:
- 62f96ae
- Parents:
- bf22bc6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
rbf22bc6 raa96fba 126 126 } 127 127 128 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} --quiet "128 sh "${SrcDir}/configure CXX=${Settings.Compiler.CXX} CC=${Settings.Compiler.CC} ${Settings.Architecture.flags} AR=gcc-ar RANLIB=gcc-ranlib ${targets} --quiet --prefix=${BuildDir}" 129 129 130 130 // Configure libcfa … … 155 155 dir (BuildDir) { 156 156 sh "make -j 8 --no-print-directory -C libcfa/${Settings.Architecture.name}-nodebug" 157 } 158 } 159 160 build_stage('Build : install', true) { 161 // Build outside of the src tree to ease cleaning 162 dir (BuildDir) { 163 sh "make -j 8 --no-print-directory install" 157 164 } 158 165 } … … 179 186 echo "Archiving core dumps" 180 187 dir (BuildDir) { 181 archiveArtifacts artifacts: "tests/crashes/**/* ", fingerprint: true188 archiveArtifacts artifacts: "tests/crashes/**/*,lib/*", fingerprint: true 182 189 } 183 190 throw err
Note: See TracChangeset
for help on using the changeset viewer.