From 5cbd19aef20d710c416adf1ef44a054457230f70 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sun, 4 Mar 2018 14:30:29 -0500 Subject: [PATCH] Jenkins archive nuttx elf files --- Jenkinsfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 6df599395d..0dfa9ed24f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -27,6 +27,7 @@ pipeline { sh "make sizes" sh "ccache -s" archiveArtifacts(artifacts: 'build/*/*.px4', fingerprint: true) + archiveArtifacts(artifacts: 'build/*/*.elf', fingerprint: true) } } } @@ -54,6 +55,7 @@ pipeline { sh "make sizes" sh "ccache -s" archiveArtifacts(artifacts: 'build/*/*.px4', fingerprint: true) + archiveArtifacts(artifacts: 'build/*/*.elf', fingerprint: true) } } } @@ -79,6 +81,7 @@ pipeline { sh "make sizes" sh "ccache -s" archiveArtifacts(artifacts: 'build/*/*.px4', fingerprint: true) + archiveArtifacts(artifacts: 'build/*/*.elf', fingerprint: true) } } }