summaryrefslogtreecommitdiffstats
path: root/.jenkins.groovy
diff options
context:
space:
mode:
authorEvan Lojewski <github@meklort.com>2020-02-07 23:02:59 -0700
committerGitHub <noreply@github.com>2020-02-07 23:02:59 -0700
commita152612a36408f4160c2ff1d50eb069c2ac4b9a9 (patch)
tree1fd82dee0044ae61e652d58e10a033f0ed848a6a /.jenkins.groovy
parentdc017c1150ae3bb7ac4b5bb1ef9d00e116d349ca (diff)
downloadbcm5719-ortega-a152612a36408f4160c2ff1d50eb069c2ac4b9a9.tar.gz
bcm5719-ortega-a152612a36408f4160c2ff1d50eb069c2ac4b9a9.zip
build: Enable clang-analyzer (scan-build) (#24)
Diffstat (limited to '.jenkins.groovy')
-rw-r--r--.jenkins.groovy17
1 files changed, 7 insertions, 10 deletions
diff --git a/.jenkins.groovy b/.jenkins.groovy
index cc93754..482eb1b 100644
--- a/.jenkins.groovy
+++ b/.jenkins.groovy
@@ -79,15 +79,13 @@ def build(nodeName)
stage('build')
{
- withEnv(['PATH+WHATEVER=/usr/local/bin']) {
- sh '''#!/bin/bash
- rm -rf build
- mkdir build
- cd build
- cmake .. -G Ninja
- ninja
- '''
- }
+ sh '''#!/bin/bash
+ rm -rf build
+ mkdir build
+ cd build
+ cmake .. -G Ninja
+ cmake --build .
+ '''
// archiveArtifacts 'release'
}
@@ -100,7 +98,6 @@ try
notify('PENDING', 'Build Pending ')
parallel(
"fedora": { build('master') },
- "debian": { build('debian') },
"ubuntu-18.04": { build('ubuntu-18.04') },
)
}
OpenPOWER on IntegriCloud