Add jenkinsfile for pipeline build and dockerfile for build
Signed-off-by: brian <brian@brutex.de>master
parent
2a96e71853
commit
e695f1c653
|
@ -130,3 +130,15 @@ echo "nameserver 8.8.8.8" | sudo tee -a /etc/resolv.conf
|
||||||
|
|
||||||
-P\<xxx>\
|
-P\<xxx>\
|
||||||
CAVIS_AVX_EXTENSION = {avx2 | avx512}, default is avx2
|
CAVIS_AVX_EXTENSION = {avx2 | avx512}, default is avx2
|
||||||
|
|
||||||
|
# Zeppelin Spark dependencies #
|
||||||
|
3
|
||||||
|
|
||||||
|
|
||||||
|
To add the dependency to the language models, use the following format in the Dependencies section of the of the Spark Interpreter configuration (Interpreters -> Spark -> Edit -> Dependencies):
|
||||||
|
|
||||||
|
groupId:artifactId:packaging:classifier:version
|
||||||
|
|
||||||
|
In your case it should work with
|
||||||
|
|
||||||
|
edu.stanford.nlp:stanford-corenlp:jar:models:3.8.0
|
|
@ -16,7 +16,8 @@ dependencies {
|
||||||
api "com.fasterxml.jackson.datatype:jackson-datatype-joda:2.10.5"
|
api "com.fasterxml.jackson.datatype:jackson-datatype-joda:2.10.5"
|
||||||
api 'org.slf4j:slf4j-simple:2.0.3'
|
api 'org.slf4j:slf4j-simple:2.0.3'
|
||||||
api 'org.slf4j:slf4j-api:2.0.3'
|
api 'org.slf4j:slf4j-api:2.0.3'
|
||||||
//api group: "org.bytedeco", name: "javacpp", classifier: "linux-x64_86"
|
api group: "org.bytedeco", name: "javacpp", classifier: "linux-x64_86"
|
||||||
|
api group: 'net.brutex.cavis-native', name: 'cavis-native-lib', version: '1.0.0-SNAPSHOT', classifier: "linux-x86_64-avx2-cpu"
|
||||||
|
|
||||||
rootProject.getAllprojects().each { Project sproj ->
|
rootProject.getAllprojects().each { Project sproj ->
|
||||||
if(!sproj.name.equals(name) && !sproj.name.equals("cavis-common-platform")
|
if(!sproj.name.equals(name) && !sproj.name.equals("cavis-common-platform")
|
||||||
|
|
|
@ -117,7 +117,8 @@ dependencies {
|
||||||
api platform(project(':cavis-common-platform'))
|
api platform(project(':cavis-common-platform'))
|
||||||
|
|
||||||
|
|
||||||
api "org.bytedeco:javacpp"
|
implementation "org.bytedeco:javacpp"
|
||||||
|
implementation group: "org.bytedeco", name: "javacpp", classifier: "${javacppPlatform}"
|
||||||
|
|
||||||
if(withCuda()) {
|
if(withCuda()) {
|
||||||
cudaSupportImplementation platform(project(':cavis-common-platform'))
|
cudaSupportImplementation platform(project(':cavis-common-platform'))
|
||||||
|
|
Loading…
Reference in New Issue