Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
tic
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenyuanbo
tic
Commits
3338af7c
Commit
3338af7c
authored
Nov 20, 2019
by
Tianqi Chen
Committed by
ziheng
Nov 20, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CI] Add more info, per exec ws isolation (#4388)
parent
6040b6f9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
13 deletions
+19
-13
Jenkinsfile
+19
-13
No files found.
Jenkinsfile
View file @
3338af7c
...
...
@@ -64,10 +64,16 @@ docker_run = 'docker/bash.sh'
// timeout in minutes
max_time
=
120
workspace
=
"workspace/exec_${env.EXECUTOR_NUMBER}"
def
per_exec_ws
(
folder
)
{
return
"workspace/exec_${env.EXECUTOR_NUMBER}/"
+
folder
}
// initialize source codes
def
init_git
()
{
// Add more info about job node
sh
"""
echo "INFO: NODE_NAME=${NODE_NAME} EXECUTOR_NUMBER=${EXECUTOR_NUMBER}"
"""
checkout
scm
retry
(
5
)
{
timeout
(
time:
2
,
unit:
'MINUTES'
)
{
...
...
@@ -88,7 +94,7 @@ def init_git_win() {
stage
(
"Sanity Check"
)
{
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
node
(
'CPU'
)
{
ws
(
"${workspace}/tvm/sanity"
)
{
ws
(
per_exec_ws
(
"tvm/sanity"
)
)
{
init_git
()
sh
"${docker_run} ${ci_lint} ./tests/scripts/task_lint.sh"
}
...
...
@@ -136,7 +142,7 @@ def unpack_lib(name, libs) {
stage
(
'Build'
)
{
parallel
'BUILD: GPU'
:
{
node
(
'GPUBUILD'
)
{
ws
(
"${workspace}/tvm/build-gpu"
)
{
ws
(
per_exec_ws
(
"tvm/build-gpu"
)
)
{
init_git
()
sh
"""
mkdir -p build
...
...
@@ -184,7 +190,7 @@ stage('Build') {
},
'BUILD: CPU'
:
{
node
(
'CPU'
)
{
ws
(
"${workspace}/tvm/build-cpu"
)
{
ws
(
per_exec_ws
(
"tvm/build-cpu"
)
)
{
init_git
()
sh
"""
mkdir -p build
...
...
@@ -216,7 +222,7 @@ stage('Build') {
},
'BUILD : i386'
:
{
node
(
'CPU'
)
{
ws
(
"${workspace}/tvm/build-i386"
)
{
ws
(
per_exec_ws
(
"tvm/build-i386"
)
)
{
init_git
()
sh
"""
mkdir -p build
...
...
@@ -241,7 +247,7 @@ stage('Build') {
stage
(
'Unit Test'
)
{
parallel
'python3: GPU'
:
{
node
(
'TensorCore'
)
{
ws
(
"${workspace}/tvm/ut-python-gpu"
)
{
ws
(
per_exec_ws
(
"tvm/ut-python-gpu"
)
)
{
init_git
()
unpack_lib
(
'gpu'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -253,7 +259,7 @@ stage('Unit Test') {
},
'python3: i386'
:
{
node
(
'CPU'
)
{
ws
(
"${workspace}/tvm/ut-python-i386"
)
{
ws
(
per_exec_ws
(
"tvm/ut-python-i386"
)
)
{
init_git
()
unpack_lib
(
'i386'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -266,7 +272,7 @@ stage('Unit Test') {
},
'java: GPU'
:
{
node
(
'GPU'
)
{
ws
(
"${workspace}/tvm/ut-java"
)
{
ws
(
per_exec_ws
(
"tvm/ut-java"
)
)
{
init_git
()
unpack_lib
(
'gpu'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -280,7 +286,7 @@ stage('Unit Test') {
stage
(
'Integration Test'
)
{
parallel
'topi: GPU'
:
{
node
(
'GPU'
)
{
ws
(
"${workspace}/tvm/topi-python-gpu"
)
{
ws
(
per_exec_ws
(
"tvm/topi-python-gpu"
)
)
{
init_git
()
unpack_lib
(
'gpu'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -291,7 +297,7 @@ stage('Integration Test') {
},
'frontend: GPU'
:
{
node
(
'GPU'
)
{
ws
(
"${workspace}/tvm/frontend-python-gpu"
)
{
ws
(
per_exec_ws
(
"tvm/frontend-python-gpu"
)
)
{
init_git
()
unpack_lib
(
'gpu'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -302,7 +308,7 @@ stage('Integration Test') {
},
'legacy: GPU'
:
{
node
(
'GPU'
)
{
ws
(
"${workspace}/tvm/legacy-python-gpu"
)
{
ws
(
per_exec_ws
(
"tvm/legacy-python-gpu"
)
)
{
init_git
()
unpack_lib
(
'gpu'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -313,7 +319,7 @@ stage('Integration Test') {
},
'docs: GPU'
:
{
node
(
'GPU'
)
{
ws
(
"${workspace}/tvm/docs-python-gpu"
)
{
ws
(
per_exec_ws
(
"tvm/docs-python-gpu"
)
)
{
init_git
()
unpack_lib
(
'gpu'
,
tvm_multilib
)
timeout
(
time:
max_time
,
unit:
'MINUTES'
)
{
...
...
@@ -345,7 +351,7 @@ stage('Build packages') {
stage
(
'Deploy'
)
{
node
(
'doc'
)
{
ws
(
"${workspace}/tvm/deploy-docs"
)
{
ws
(
per_exec_ws
(
"tvm/deploy-docs"
)
)
{
if
(
env
.
BRANCH_NAME
==
"master"
)
{
unpack_lib
(
'mydocs'
,
'docs.tgz'
)
sh
"tar xf docs.tgz -C /var/docs"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment