forked from ROCm/Tensile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
87 lines (74 loc) · 2.9 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env groovy
// This shared library is available at https://github.com/ROCmSoftwarePlatform/rocJENKINS/
@Library('rocJenkins') _
// This file is for internal AMD use.
// If you are interested in running your own Jenkins, please raise a github issue for assistance.
import com.amd.project.*
import com.amd.docker.*
////////////////////////////////////////////////////////////////////////
// Mostly generated from snippet generator 'properties; set job properties'
// Time-based triggers added to execute nightly tests, eg '30 2 * * *' means 2:30 AM
properties([
pipelineTriggers([cron('0 3 * * *'), [$class: 'PeriodicFolderTrigger', interval: '5m']]),
buildDiscarder(logRotator(
artifactDaysToKeepStr: '',
artifactNumToKeepStr: '',
daysToKeepStr: '',
numToKeepStr: '10')),
disableConcurrentBuilds(),
[$class: 'CopyArtifactPermissionProperty', projectNames: '*']
])
////////////////////////////////////////////////////////////////////////
import java.nio.file.Path;
tensileCI:
{
def tensile = new rocProject('tensile')
tensile.paths.build_command = 'cmake -D CMAKE_BUILD_TYPE=Debug ../lib'
// Define test architectures, optional rocm version argument is available
def nodes = new dockerNodes(['gfx900','gfx906'], tensile)
boolean formatCheck = false
def compileCommand =
{
platform, project->
try
{
project.paths.construct_build_prefix()
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}
mkdir build && cd build
export PATH=/opt/rocm/bin:$PATH
${project.paths.build_command}
make -j16
./test/TensileTests --gtest_output=xml:host_test_output.xml --gtest_color=yes
"""
platform.runCommand(this, command)
}
finally
{
junit "${project.paths.project_build_prefix}/build/host_test_output.xml"
}
}
def test_dir = auxiliary.isJobStartedByTimer() ? "Tensile/Tests/nightly" : "Tensile/Tests/pre_checkin"
def testCommand =
{
platform, project->
try
{
def command = """#!/usr/bin/env bash
set -x
cd ${project.paths.project_build_prefix}
tox --version
tox -vv --workdir /tmp/.tensile-tox Tensile/UnitTests ${test_dir} -e lint
tox -vv --workdir /tmp/.tensile-tox Tensile/UnitTests ${test_dir} -e py35
"""
platform.runCommand(this, command)
}
finally
{
junit "${project.paths.project_build_prefix}/*_tests.xml"
}
}
def packageCommand = null
buildProject(tensile, formatCheck, nodes.dockerArray, compileCommand, testCommand, packageCommand)
}