Skip to content

Commit f34d8b1

Browse files
authored
Add back Linux arm64 artifacts (#556)
1 parent 23dba41 commit f34d8b1

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ jobs:
208208
if ERRORLEVEL 1 exit /b
209209
deploy:
210210
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/staging') }} # DEPLOY_SNAPSHOT (releases should be signed and deployed manually from local machine)
211-
needs: [linux-x86_64, macosx-x86_64, windows-x86_64, macosx-arm64] #, linux-arm64]
211+
needs: [linux-x86_64, macosx-x86_64, windows-x86_64, macosx-arm64, linux-arm64]
212212
runs-on: ubuntu-20.04
213213
steps:
214214
- name: Configure Java

tensorflow-core/tensorflow-core-native/pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@
131131
<version>${project.version}</version>
132132
<classifier>${javacpp.platform.windows-x86_64}</classifier>
133133
</artifactItem>
134-
<!--artifactItem>
134+
<artifactItem>
135135
<groupId>${project.groupId}</groupId>
136136
<artifactId>${project.artifactId}</artifactId>
137137
<version>${project.version}</version>
138138
<classifier>${javacpp.platform.linux-arm64}</classifier>
139-
</artifactItem-->
139+
</artifactItem>
140140
</artifactItems>
141141
</configuration>
142142
</execution>
@@ -175,10 +175,10 @@
175175
<file>${project.build.directory}/${project.artifactId}-${project.version}-${javacpp.platform.windows-x86_64}.jar</file>
176176
<classifier>${javacpp.platform.windows-x86_64}</classifier>
177177
</artifact>
178-
<!--artifact>
178+
<artifact>
179179
<file>${project.build.directory}/${project.artifactId}-${project.version}-${javacpp.platform.linux-arm64}.jar</file>
180180
<classifier>${javacpp.platform.linux-arm64}</classifier>
181-
</artifact-->
181+
</artifact>
182182
</artifacts>
183183
</configuration>
184184
</execution>

tensorflow-core/tensorflow-core-platform/pom.xml

+3-4
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@
4343
<version>${project.version}</version>
4444
<classifier>linux-x86_64</classifier>
4545
</dependency>
46-
<!--dependency>
46+
<dependency>
4747
<groupId>org.tensorflow</groupId>
4848
<artifactId>tensorflow-core-native</artifactId>
4949
<version>${project.version}</version>
5050
<classifier>linux-arm64</classifier>
51-
</dependency-->
51+
</dependency>
5252
<dependency>
5353
<groupId>org.tensorflow</groupId>
5454
<artifactId>tensorflow-core-native</artifactId>
@@ -79,8 +79,7 @@
7979
<configuration>
8080
<archive>
8181
<manifestEntries>
82-
<!--Class-Path>tensorflow-core-api.jar tensorflow-core-native.jar tensorflow-core-native-linux-x86_64.jar tensorflow-core-native-macosx-arm64.jar tensorflow-core-native-macosx-x86_64.jar tensorflow-core-native-windows-x86_64.jar tensorflow-core-native-linux-arm64.jar</Class-Path-->
83-
<Class-Path>tensorflow-core-api.jar tensorflow-core-native.jar tensorflow-core-native-linux-x86_64.jar tensorflow-core-native-macosx-arm64.jar tensorflow-core-native-macosx-x86_64.jar tensorflow-core-native-windows-x86_64.jar</Class-Path>
82+
<Class-Path>tensorflow-core-api.jar tensorflow-core-native.jar tensorflow-core-native-linux-x86_64.jar tensorflow-core-native-macosx-arm64.jar tensorflow-core-native-macosx-x86_64.jar tensorflow-core-native-windows-x86_64.jar tensorflow-core-native-linux-arm64.jar</Class-Path>
8483
<Automatic-Module-Name>${java.module.name}</Automatic-Module-Name>
8584
</manifestEntries>
8685
</archive>

0 commit comments

Comments
 (0)