Skip to content

Commit

Permalink
does gdb work
Browse files Browse the repository at this point in the history
jonahgraham committed Jan 29, 2024
1 parent 125030c commit b18031e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -18,6 +18,17 @@ pipeline {
}
}
}
stage('Does GDB work') {
steps {
container('cdt') {
timeout(activity: true, time: 30) {
withEnv(['MAVEN_OPTS=-XX:MaxRAMPercentage=50.0 -XX:+PrintFlagsFinal']) {
sh 'cd dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/data/launch/src && make && cd ../../launch/bin/ && ./MemoryTestApp.exe ; echo $? ; /shared/common/gdb/gdb-all/bin/gdb.10 -ex run -ex quit MemoryTestApp.exe'
}
}
}
}
}
stage('Code Formatting Checks') {
steps {
container('cdt') {

0 comments on commit b18031e

Please sign in to comment.