Add jenkinsfile for pipeline build and dockerfile for build

Signed-off-by: brian <brian@brutex.de>
master
Brian Rosenberger 2022-10-25 09:20:22 +02:00
parent 7cd0cd12cc
commit 46b04cc0b4
2 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,7 @@ dependencies {
}
}
*/
if(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "implementation")
if(withCpu()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cpuSupportCompileClasspath")
//if(withCuda()) api project(path: ":cavis-native:cavis-native-lib", configuration: "cudaSupportCompileClasspath")
/*

View File

@ -431,6 +431,7 @@ chipList.each { thisChip ->
chipList.each{ thisChip ->
configurations {
implementation.extendsFrom findByName("${thisChip}SupportImplementation")
findByName("${thisChip}SupportImplementation").setCanBeConsumed(true)
}
}