Update javacpp versions, deploy plugin
parent
061f3268e7
commit
1f6cb95c67
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
android-x86_64:
|
||||
runs-on: ubuntu-18.04
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
#Note: no -pl here because we publish everything from this branch and use this as the basis for all uploads.
|
||||
android-arm32:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
#Note: no -pl here because we publish everything from this branch and use this as the basis for all uploads.
|
||||
android-arm64:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
#Note: no -pl here because we publish everything from this branch and use this as the basis for all uploads.
|
||||
linux-arm32:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
#Note: no -pl here because we publish everything from this branch and use this as the basis for all uploads.
|
||||
linux-arm64:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
|
||||
linux-x86_64-cuda_11-0:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
linux-x86_64-cuda-11-2:
|
||||
runs-on: ubuntu-18.04
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
#Note: no -pl here because we publish everything from this branch and use this as the basis for all uploads.
|
||||
linux-x86_64:
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
mac-x86_64:
|
||||
runs-on: macos-10.15
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
windows-x86_64-cuda-11-0:
|
||||
runs-on: windows-2019
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
windows-x86_64-cuda-11-2:
|
||||
runs-on: windows-2019
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
on:
|
||||
schedule:
|
||||
- cron: "0 */12 * * *"
|
||||
workflow_dispatch:
|
||||
jobs:
|
||||
|
||||
windows-x86_64:
|
||||
|
|
|
@ -325,6 +325,42 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-deploy</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>java-classes</id>
|
||||
<phase>deploy</phase>
|
||||
<configuration>
|
||||
<packaging>jar</packaging>
|
||||
<artifactId>${project.artifactId}</artifactId>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<sources>${project.build.directory}/nd4j-cuda-${cuda.version}-${project.version}.jar</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>native-deps</id>
|
||||
<phase>deploy</phase>
|
||||
<configuration>
|
||||
<packaging>jar</packaging>
|
||||
<artifactId>${project.artifactId}</artifactId>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<classifier>${javacpp.platform}</classifier>
|
||||
<sources>${project.build.directory}/nd4j-cuda-${cuda.version}-${project.version}-${javacpp.platform}.jar</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
|
@ -261,6 +261,44 @@
|
|||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-deploy-plugin</artifactId>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>default-deploy</id>
|
||||
<phase>none</phase>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>java-classes</id>
|
||||
<phase>deploy</phase>
|
||||
<configuration>
|
||||
<packaging>jar</packaging>
|
||||
<artifactId>${project.artifactId}</artifactId>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<sources>${project.build.directory}/nd4j-native-${project.version}.jar</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
<execution>
|
||||
<id>native-deps</id>
|
||||
<phase>deploy</phase>
|
||||
<configuration>
|
||||
<packaging>jar</packaging>
|
||||
<artifactId>${project.artifactId}</artifactId>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<version>${project.version}</version>
|
||||
<classifier>${javacpp.platform}</classifier>
|
||||
<sources>${project.build.directory}/nd4j-native-${project.version}-${javacpp.platform}.jar</sources>
|
||||
</configuration>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@
|
|||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>1.8</maven.compiler.source>
|
||||
<maven.compiler.target>1.8</maven.compiler.target>
|
||||
<onnxruntime.version>1.6.0</onnxruntime.version>
|
||||
<onnxruntime.version>1.7.0</onnxruntime.version>
|
||||
<onnxruntime.javacpp.version>${onnxruntime.version}-${javacpp.version}</onnxruntime.javacpp.version>
|
||||
</properties>
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -194,7 +194,7 @@
|
|||
<openblas.version>0.3.13</openblas.version>
|
||||
<mkl.version>2021.1</mkl.version>
|
||||
<opencv.version>4.5.1</opencv.version>
|
||||
<ffmpeg.version>4.3.1</ffmpeg.version>
|
||||
<ffmpeg.version>4.3.2</ffmpeg.version>
|
||||
<leptonica.version>1.80.0</leptonica.version>
|
||||
<hdf5.version>1.12.0</hdf5.version>
|
||||
<ale.version>0.6.1</ale.version>
|
||||
|
|
Loading…
Reference in New Issue