forked from Xilinx/RapidWright
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
197 lines (175 loc) · 5.48 KB
/
build.gradle
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
buildscript {
gradle.ext.rapidwrightDir = "."
}
plugins {
id 'java'
id 'maven-publish'
id 'signing'
}
apply from: 'common.gradle'
mainClassName = "com.xilinx.rapidwright.MainEntrypoint"
def read_rapidwright_version() {
def sw = new StringWriter()
file('.github/workflows/build.yml').filterLine(sw) {
line -> line.contains('RAPIDWRIGHT_VERSION:')
}
return sw.toString().replace("RAPIDWRIGHT_VERSION: v", "").replace("-beta", "").trim() + ""
}
def rapidwright_version = project.hasProperty('override_rapidwright_version') ? override_rapidwright_version : read_rapidwright_version()
dependencies {
api 'com.xilinx.rapidwright:rapidwright-api-lib:' + rapidwright_version
}
sourceSets {
main {
java.destinationDirectory.fileValue(file('bin'))
java {
srcDirs = ['src']
}
}
test {
java {
srcDirs = ['test/src']
}
}
testFixtures {
java {
srcDirs = ['test/shared']
}
resources {
srcDirs = ['test/resources']
}
}
}
task copyJars(type: Copy) {
from configurations.api
into 'jars'
//testFixturesImplementation contains the output jar, as well as an implicit dependency on the task.
//Filter to remove the jar itself, getFiles() to remove the implicit dependency
from configurations.testFixturesImplementation.filter { !tasks.getByName("jar").outputs.files.contains(it) } .getFiles()
into 'jars'
}
compileJava.dependsOn(copyJars)
task deleteJars(type: Delete) {
delete fileTree('jars')
}
task updateJars {
group = "build setup"
description = "Removes all jars from RapidWright/jars and replaces with only necessary dependencies."
dependsOn deleteJars
dependsOn copyJars
copyJars.mustRunAfter deleteJars
}
task update_jars {
group = "build setup"
description = "Alias for 'updateJars'."
dependsOn updateJars
}
task sourceJar(type: Jar) {
from sourceSets.main.allJava
archiveClassifier = "sources"
}
javadoc {
source = sourceSets.main.allJava
classpath = configurations.implementation
options.addStringOption('Xdoclint:none', '-quiet')
}
task javadocJar(type: Jar) {
from javadoc
archiveClassifier = "javadoc"
}
task standaloneJar (type: Jar) {
duplicatesStrategy = DuplicatesStrategy.WARN
manifest {
attributes 'Main-Class': 'com.xilinx.rapidwright.util.RapidWright'
}
archiveBaseName = 'rapidwright-'+rapidwright_version+'-standalone-' + os.charAt(0) + 'in64'
from { configurations.implementation.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
artifacts {
archives javadocJar
archives sourceJar
archives jar
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
artifact sourceJar
artifact javadocJar
// rapidwright coordinates
groupId = "com.xilinx.rapidwright"
artifactId = "rapidwright"
version = rapidwright_version
pom {
name = "RapidWright"
description = "Open Source companion framework for Xilinx's Vivado for customizing backend implementation"
url = "http://rapidwright.io"
licenses {
license {
name = "The Apache License, Version 2.0"
url = "http://www.apache.org/licenses/LICENSE-2.0.txt"
}
}
developers {
developer {
name = "RapidWright Developers"
}
}
scm {
connection = 'scm:[email protected]:Xilinx/RapidWright.git'
url ='https://github.com/Xilinx/RapidWright'
}
}
}
}
repositories {
maven {
credentials {
username = project.findProperty("ossrhUsername") ?: ""
password = project.findProperty("ossrhPassword") ?: ""
}
url = "https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/"
}
}
}
signing {
setRequired {
// signing is only required when publishing to maven central
gradle.taskGraph.allTasks.any { it.equals( publishMavenJavaPublicationToMavenRepository ) }
}
sign configurations.archives
sign publishing.publications.mavenJava
}
task testPython(type:Test) {
group = "verification"
description = "Runs the Python unit tests."
doFirst {
// Necessary because gradle will try and match against Java tests
filter.setFailOnNoMatchingTests(false)
}
doLast {
exec {
environment 'CLASSPATH', sourceSets.main.runtimeClasspath.getAsPath()
executable = 'python3'
args = ['-m', 'pytest', '--junitxml', '$buildDir/test-results/testPython/testPython.xml', '--rootdir', 'python/test']
// Enable verbose flag which prints out a pass/fail for every test
args += ['-v']
// Prevent python/tests/... with the same namespace as in Java from clobbering
args += ['--import-mode=importlib']
// Workaround from https://github.com/jpype-project/jpype/issues/842#issuecomment-847027355
args += ['-p', 'no:faulthandler']
if (!filter.commandLineIncludePatterns.isEmpty()) {
args += ['--pyargs'] + filter.commandLineIncludePatterns.stream().map((p) -> 'python.test.' + p).collect(Collectors.toList())
}
}
}
}
test {
dependsOn testPython
}
task printRapidWrightVersion() {
doLast {
print(rapidwright_version)
}
}