From a45c68d0d3c97cfed271622ed6cc91b9a1b05685 Mon Sep 17 00:00:00 2001 From: Chris Sidebottom Date: Thu, 27 Jan 2022 15:02:59 +0000 Subject: [PATCH] [CI] Move docs precheck to docs: GPU This didn't trigger in #10077 as it lives in unittest that is skipped on docs only builds. --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1cd8575fa3fd..a871630e7b0f 100755 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -388,10 +388,6 @@ stage('Test') { unpack_lib('gpu', tvm_multilib) timeout(time: max_time, unit: 'MINUTES') { ci_setup(ci_gpu) - sh ( - script: "${docker_run} ${ci_gpu} ./tests/scripts/task_sphinx_precheck.sh", - label: 'Check Sphinx warnings in docs', - ) sh ( script: "${docker_run} ${ci_gpu} ./tests/scripts/task_java_unittest.sh", label: 'Run Java unit tests', @@ -566,6 +562,10 @@ stage('Test') { unpack_lib('gpu', tvm_multilib) timeout(time: max_time, unit: 'MINUTES') { ci_setup(ci_gpu) + sh ( + script: "${docker_run} ${ci_gpu} ./tests/scripts/task_sphinx_precheck.sh", + label: 'Check Sphinx warnings in docs', + ) sh ( script: "${docker_run} ${ci_gpu} ./tests/scripts/task_python_docs.sh", label: 'Build docs',