Add jenkinsfile for pipeline build and dockerfile for build

Signed-off-by: brian <brian@brutex.de>
master
Brian Rosenberger 2022-10-25 09:03:46 +02:00
parent 0bd8f072c0
commit 0aea7d8e4c
2 changed files with 7 additions and 2 deletions

View File

@ -36,8 +36,8 @@ dependencies {
}
}
*/
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(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cpuSupportCompileClasspath")
//if(withCuda()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cudaSupportCompileClasspath")
/*
api (project(':cavis-native:cavis-native-lib')) {

View File

@ -428,6 +428,11 @@ chipList.each { thisChip ->
}
}
chipList.each{ thisChip ->
configurations {
implementation.extendsFrom findByName("${thisChip}SupportImplementation")
}
}
tasks.withType(JavaCompile) {