From 46b04cc0b4ae8e1469b5d6118abcd4ea05c5a398 Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 25 Oct 2022 09:20:22 +0200 Subject: [PATCH] Add jenkinsfile for pipeline build and dockerfile for build Signed-off-by: brian --- cavis-full/build.gradle | 2 +- cavis-native/cavis-native-lib/build.gradle | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cavis-full/build.gradle b/cavis-full/build.gradle index e25089501..7250b7861 100644 --- a/cavis-full/build.gradle +++ b/cavis-full/build.gradle @@ -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") /* diff --git a/cavis-native/cavis-native-lib/build.gradle b/cavis-native/cavis-native-lib/build.gradle index 8614fc9df..e2a72cb9c 100644 --- a/cavis-native/cavis-native-lib/build.gradle +++ b/cavis-native/cavis-native-lib/build.gradle @@ -431,6 +431,7 @@ chipList.each { thisChip -> chipList.each{ thisChip -> configurations { implementation.extendsFrom findByName("${thisChip}SupportImplementation") + findByName("${thisChip}SupportImplementation").setCanBeConsumed(true) } }