Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Beta build (#16411)
Browse files Browse the repository at this point in the history
* remove unused jenkinsfile

* add a pipeline that publishes to staging beta site

* add staging site tar file generation; fix outputs
  • Loading branch information
aaronmarkham authored and ThomasDelteil committed Oct 10, 2019
1 parent 1ab4c95 commit e484f72
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1832,12 +1832,12 @@ build_docs() {
popd
}

build_docs_small() {
build_docs_beta() {
pushd docs/_build
tar -xzf jekyll-artifacts.tgz
api_folder='html/api'
mkdir -p $api_folder/python/docs && tar -xzf python-artifacts.tgz --directory $api_folder/python/docs
# The folder to be published is now in /docs/_build/html
GZIP=-9 tar -zcvf beta_website.tgz -C html .
popd
}

Expand Down
43 changes: 41 additions & 2 deletions ci/jenkins/Jenkins_steps.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -1416,11 +1416,11 @@ def should_pack_website() {
return true
}
} else {
return true
return true
}
return false
}

// Each of the docs_{lang} functions will build the docs...
// Stashing is only needed for master for website publishing or for testing "new_"

Expand Down Expand Up @@ -1604,6 +1604,27 @@ def docs_prepare() {
}


def docs_prepare_beta() {
return ['Prepare for publication to the staging website': {
node(NODE_LINUX_CPU) {
ws('workspace/docs') {
timeout(time: max_time, unit: 'MINUTES') {
utils.init_git()

unstash 'jekyll-artifacts'
unstash 'python-artifacts'

utils.docker_run('ubuntu_cpu_jekyll', 'build_docs_beta', false)

// archive so the publish pipeline can access the artifact
archiveArtifacts 'docs/_build/beta_website.tgz'
}
}
}
}]
}


def docs_archive() {
return ['Archive the full website': {
node(NODE_LINUX_CPU) {
Expand Down Expand Up @@ -1639,6 +1660,24 @@ def docs_publish() {
}


// This is for the beta website
def docs_publish_beta() {
return ['Publish the beta website to staging': {
node(NODE_LINUX_CPU) {
ws('workspace/docs') {
timeout(time: max_time, unit: 'MINUTES') {
try {
build 'restricted-website-publish-master-beta'
}
catch (Exception e) {
println(e.getMessage())
}
}
}
}
}]
}


def misc_asan_cpu() {
return ['CPU ASAN': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,24 +19,39 @@
//
// Jenkins pipeline
// See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/
// This pipeline will publish to https://mxnet-beta.staged.apache.org/

// timeout in minutes
max_time = 180

node('utility') {
node('restricted-utility') {
// Loading the utilities requires a node context unfortunately
checkout scm
utils = load('ci/Jenkinsfile_utils.groovy')
custom_steps = load('ci/jenkins/Jenkins_steps.groovy')
}
utils.assign_node_labels(utility: 'utility', linux_cpu: 'mxnetlinux-cpu')

utils.assign_node_labels(utility: 'restricted-utility', linux_cpu: 'restricted-mxnetlinux-cpu', linux_gpu: 'restricted-mxnetlinux-gpu', linux_gpu_p3: 'restricted-mxnetlinux-gpu-p3', windows_cpu: 'restricted-mxnetwindows-cpu', windows_gpu: 'restricted-mxnetwindows-gpu')

utils.main_wrapper(
core_logic: {
utils.parallel_stage('Placeholder', [
// Do nothing
utils.parallel_stage('Build', [
custom_steps.compile_unix_lite()
])

utils.parallel_stage('Build Docs', [
// Only building a subset of the docs for previewing on staging
custom_steps.docs_jekyll(),
custom_steps.docs_python()
])

utils.parallel_stage('Prepare', [
custom_steps.docs_prepare_beta()
])

utils.parallel_stage('Publish', [
custom_steps.docs_publish_beta()
])
}
,
failure_handler: {
Expand Down

0 comments on commit e484f72

Please sign in to comment.