Add jenkinsfile for pipeline build and dockerfile for build
Signed-off-by: brian <brian@brutex.de>master
parent
0bd8f072c0
commit
0aea7d8e4c
|
@ -36,8 +36,8 @@ dependencies {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
if(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cpuSupportCompileClasspath")
|
//if(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cpuSupportCompileClasspath")
|
||||||
if(withCuda()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cudaSupportCompileClasspath")
|
//if(withCuda()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cudaSupportCompileClasspath")
|
||||||
|
|
||||||
/*
|
/*
|
||||||
api (project(':cavis-native:cavis-native-lib')) {
|
api (project(':cavis-native:cavis-native-lib')) {
|
||||||
|
|
|
@ -428,6 +428,11 @@ chipList.each { thisChip ->
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
chipList.each{ thisChip ->
|
||||||
|
configurations {
|
||||||
|
implementation.extendsFrom findByName("${thisChip}SupportImplementation")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
tasks.withType(JavaCompile) {
|
tasks.withType(JavaCompile) {
|
||||||
|
|
Loading…
Reference in New Issue