From 0aea7d8e4ccdfcd046e073e4fb806e9805de6efb Mon Sep 17 00:00:00 2001 From: brian Date: Tue, 25 Oct 2022 09:03:46 +0200 Subject: [PATCH] Add jenkinsfile for pipeline build and dockerfile for build Signed-off-by: brian --- cavis-full/build.gradle | 4 ++-- cavis-native/cavis-native-lib/build.gradle | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/cavis-full/build.gradle b/cavis-full/build.gradle index b6f082a52..c09fed04e 100644 --- a/cavis-full/build.gradle +++ b/cavis-full/build.gradle @@ -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')) { diff --git a/cavis-native/cavis-native-lib/build.gradle b/cavis-native/cavis-native-lib/build.gradle index a83faf398..8614fc9df 100644 --- a/cavis-native/cavis-native-lib/build.gradle +++ b/cavis-native/cavis-native-lib/build.gradle @@ -428,6 +428,11 @@ chipList.each { thisChip -> } } +chipList.each{ thisChip -> + configurations { + implementation.extendsFrom findByName("${thisChip}SupportImplementation") + } +} tasks.withType(JavaCompile) {