mirror of
https://github.com/triqs/dft_tools
synced 2024-12-21 11:53:41 +01:00
[jenkins] Build docs during ubuntu-clang build
and publish; copied from triqs docs build, but with different BUILD_DOC cmake option.
This commit is contained in:
parent
c85bed0489
commit
73d37c6836
@ -5,6 +5,7 @@ COPY . ${SRC}/dft_tools
|
|||||||
WORKDIR ${BUILD}/dft_tools
|
WORKDIR ${BUILD}/dft_tools
|
||||||
RUN chown build .
|
RUN chown build .
|
||||||
USER build
|
USER build
|
||||||
RUN cmake ${SRC}/dft_tools -DTRIQS_ROOT=${INSTALL} && make -j2 && make test
|
ARG BUILD_DOC=0
|
||||||
|
RUN cmake ${SRC}/dft_tools -DTRIQS_ROOT=${INSTALL} -DBUILD_DOC=${BUILD_DOC} && make -j2 && make test
|
||||||
USER root
|
USER root
|
||||||
RUN make install
|
RUN make install
|
||||||
|
121
Jenkinsfile
vendored
121
Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
|||||||
|
def projectName = "dft_tools"
|
||||||
def triqsBranch = env.CHANGE_TARGET ?: env.BRANCH_NAME
|
def triqsBranch = env.CHANGE_TARGET ?: env.BRANCH_NAME
|
||||||
def triqsProject = '/TRIQS/triqs/' + triqsBranch.replaceAll('/', '%2F')
|
def triqsProject = '/TRIQS/triqs/' + triqsBranch.replaceAll('/', '%2F')
|
||||||
|
def documentationPlatform = "ubuntu-clang"
|
||||||
|
|
||||||
properties([
|
properties([
|
||||||
disableConcurrentBuilds(),
|
disableConcurrentBuilds(),
|
||||||
@ -17,21 +19,21 @@ def platforms = [:]
|
|||||||
def dockerPlatforms = ["ubuntu-clang", "ubuntu-gcc", "centos-gcc"]
|
def dockerPlatforms = ["ubuntu-clang", "ubuntu-gcc", "centos-gcc"]
|
||||||
for (int i = 0; i < dockerPlatforms.size(); i++) {
|
for (int i = 0; i < dockerPlatforms.size(); i++) {
|
||||||
def platform = dockerPlatforms[i]
|
def platform = dockerPlatforms[i]
|
||||||
platforms[platform] = { -> stage(platform) {
|
platforms[platform] = { -> node('docker') {
|
||||||
timeout(time: 1, unit: 'HOURS') {
|
stage(platform) { timeout(time: 1, unit: 'HOURS') {
|
||||||
node('docker') {
|
checkout scm
|
||||||
checkout scm
|
/* construct a Dockerfile for this base */
|
||||||
/* construct a Dockerfile for this base */
|
sh """
|
||||||
sh """
|
( echo "FROM flatironinstitute/triqs:${triqsBranch}-${env.STAGE_NAME}" ; sed '0,/^FROM /d' Dockerfile ) > Dockerfile.jenkins
|
||||||
( echo "FROM flatironinstitute/triqs:${triqsBranch}-${env.STAGE_NAME}" ; sed '0,/^FROM /d' Dockerfile ) > Dockerfile.jenkins
|
mv -f Dockerfile.jenkins Dockerfile
|
||||||
mv -f Dockerfile.jenkins Dockerfile
|
"""
|
||||||
"""
|
/* build and tag */
|
||||||
/* build and tag */
|
def img = docker.build("flatironinstitute/${projectName}:${env.BRANCH_NAME}-${env.STAGE_NAME}", "--build-arg BUILD_DOC=${platform==documentationPlatform} .")
|
||||||
def img = docker.build("flatironinstitute/dft_tools:${env.BRANCH_NAME}-${env.STAGE_NAME}")
|
if (env.BRANCH_NAME.startsWith("PR-") || platform != documentationPlatform) {
|
||||||
/* but we don't need the tag so clean it up (alternatively, could refacter to run in container) */
|
/* but we don't need the tag so clean it up (except for documentation) */
|
||||||
sh "docker rmi ${img.imageName()}"
|
sh "docker rmi ${img.imageName()}"
|
||||||
}
|
}
|
||||||
}
|
} }
|
||||||
} }
|
} }
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -42,51 +44,70 @@ def osxPlatforms = [
|
|||||||
for (int i = 0; i < osxPlatforms.size(); i++) {
|
for (int i = 0; i < osxPlatforms.size(); i++) {
|
||||||
def platformEnv = osxPlatforms[i]
|
def platformEnv = osxPlatforms[i]
|
||||||
def platform = platformEnv[0]
|
def platform = platformEnv[0]
|
||||||
platforms["osx-$platform"] = { -> stage("osx-$platform") {
|
platforms["osx-$platform"] = { -> node('osx && triqs') {
|
||||||
timeout(time: 1, unit: 'HOURS') {
|
stage("osx-$platform") { timeout(time: 1, unit: 'HOURS') {
|
||||||
node('osx && triqs') {
|
def srcDir = pwd()
|
||||||
def srcDir = pwd()
|
def tmpDir = pwd(tmp:true)
|
||||||
def tmpDir = pwd(tmp:true)
|
def buildDir = "$tmpDir/build"
|
||||||
def buildDir = "$tmpDir/build"
|
def installDir = "$tmpDir/install"
|
||||||
def installDir = "$tmpDir/install"
|
|
||||||
|
|
||||||
dir(installDir) {
|
dir(installDir) {
|
||||||
deleteDir()
|
deleteDir()
|
||||||
}
|
|
||||||
|
|
||||||
copyArtifacts(projectName: triqsProject, selector: upstream(fallbackToLastSuccessful: true), filter: "osx-${platform}.zip")
|
|
||||||
unzip(zipFile: "osx-${platform}.zip", dir: installDir)
|
|
||||||
/* fixup zip-stripped permissions (JENKINS-13128) */
|
|
||||||
sh "chmod +x $installDir/bin/*"
|
|
||||||
|
|
||||||
checkout scm
|
|
||||||
|
|
||||||
dir(buildDir) { withEnv(platformEnv[1]+[
|
|
||||||
"PATH=$installDir/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin",
|
|
||||||
"CPATH=$installDir/include",
|
|
||||||
"LIBRARY_PATH=$installDir/lib",
|
|
||||||
"CMAKE_PREFIX_PATH=$installDir/share/cmake"]) {
|
|
||||||
deleteDir()
|
|
||||||
sh "cmake $srcDir -DTRIQS_ROOT=$installDir"
|
|
||||||
sh "make -j2"
|
|
||||||
try {
|
|
||||||
sh "make test"
|
|
||||||
} catch (exc) {
|
|
||||||
archiveArtifacts(artifacts: 'Testing/Temporary/LastTest.log')
|
|
||||||
throw exc
|
|
||||||
}
|
|
||||||
sh "make install"
|
|
||||||
} }
|
|
||||||
// zip(zipFile: "osx-${platform}.zip", archive: true, dir: installDir)
|
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
copyArtifacts(projectName: triqsProject, selector: upstream(fallbackToLastSuccessful: true), filter: "osx-${platform}.zip")
|
||||||
|
unzip(zipFile: "osx-${platform}.zip", dir: installDir)
|
||||||
|
/* fixup zip-stripped permissions (JENKINS-13128) */
|
||||||
|
sh "chmod +x $installDir/bin/*"
|
||||||
|
|
||||||
|
checkout scm
|
||||||
|
|
||||||
|
dir(buildDir) { withEnv(platformEnv[1]+[
|
||||||
|
"PATH=$installDir/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin",
|
||||||
|
"CPATH=$installDir/include",
|
||||||
|
"LIBRARY_PATH=$installDir/lib",
|
||||||
|
"CMAKE_PREFIX_PATH=$installDir/share/cmake"]) {
|
||||||
|
deleteDir()
|
||||||
|
sh "cmake $srcDir -DTRIQS_ROOT=$installDir"
|
||||||
|
sh "make -j2"
|
||||||
|
try {
|
||||||
|
sh "make test"
|
||||||
|
} catch (exc) {
|
||||||
|
archiveArtifacts(artifacts: 'Testing/Temporary/LastTest.log')
|
||||||
|
throw exc
|
||||||
|
}
|
||||||
|
sh "make install"
|
||||||
|
} }
|
||||||
|
// zip(zipFile: "osx-${platform}.zip", archive: true, dir: installDir)
|
||||||
|
} }
|
||||||
} }
|
} }
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
parallel platforms
|
parallel platforms
|
||||||
|
if (!env.BRANCH_NAME.startsWith("PR-")) {
|
||||||
|
node("docker") {
|
||||||
|
stage("documentation") { timeout(time: 1, unit: 'HOURS') {
|
||||||
|
def workDir = pwd()
|
||||||
|
dir("$workDir/gh-pages") {
|
||||||
|
def subdir = env.BRANCH_NAME
|
||||||
|
git(url: "ssh://git@github.com/TRIQS/${projectName}.git", branch: "gh-pages", credentialsId: "ssh", changelog: false)
|
||||||
|
sh "rm -rf ${subdir}"
|
||||||
|
docker.image("flatironinstitute/${projectName}:${env.BRANCH_NAME}-${documentationPlatform}").inside() {
|
||||||
|
sh "cp -rp \$INSTALL/share/doc/${projectName} ${subdir}"
|
||||||
|
}
|
||||||
|
sh "git add -A ${subdir}"
|
||||||
|
sh """
|
||||||
|
git commit --author='Flatiron Jenkins <jenkins@flatironinstitute.org>' --allow-empty -m 'Generated documentation for ${env.BRANCH_NAME}' -m "`git --git-dir ${workDir}/.git rev-parse HEAD`"
|
||||||
|
"""
|
||||||
|
// note: credentials used above don't work (need JENKINS-28335)
|
||||||
|
sh "git push origin gh-pages"
|
||||||
|
}
|
||||||
|
} }
|
||||||
|
}
|
||||||
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
emailext(
|
if (env.BRANCH_NAME != "jenkins") emailext(
|
||||||
subject: "\$PROJECT_NAME - Build # \$BUILD_NUMBER - FAILED",
|
subject: "\$PROJECT_NAME - Build # \$BUILD_NUMBER - FAILED",
|
||||||
body: """\$PROJECT_NAME - Build # \$BUILD_NUMBER - FAILED
|
body: """\$PROJECT_NAME - Build # \$BUILD_NUMBER - FAILED
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user