[RFC] Version 0.90 release candidate (#4475)

* Release 0.90

* Add script to automatically generate acknowledgment

* Update NEWS.md
This commit is contained in:
Philip Hyunsu Cho
2019-05-20 01:02:44 -07:00
committed by GitHub
parent adcd8ea7c6
commit 515f5f5c47
16 changed files with 244 additions and 15 deletions

5
Jenkinsfile vendored
View File

@@ -155,8 +155,11 @@ def Doxygen() {
def container_type = "cpu"
def docker_binary = "docker"
sh """
${dockerRun} ${container_type} ${docker_binary} tests/ci_build/doxygen.sh
${dockerRun} ${container_type} ${docker_binary} tests/ci_build/doxygen.sh ${BRANCH_NAME}
"""
archiveArtifacts artifacts: "build/${BRANCH_NAME}.tar.bz2", allowEmptyArchive: true
echo 'Uploading doc...'
s3Upload file: "build/${BRANCH_NAME}.tar.bz2", bucket: 'xgboost-docs', acl: 'PublicRead', path: "doxygen/${BRANCH_NAME}.tar.bz2"
deleteDir()
}
}