Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
add defaults and clean up the tests (#13295)
Browse files Browse the repository at this point in the history
  • Loading branch information
lanking520 authored and yzhliu committed Nov 16, 2018
1 parent 7d51241 commit 3ec9030
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 19 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ scalaclean:

scalapkg:
(cd $(ROOTDIR)/scala-package; \
mvn package -P$(SCALA_PKG_PROFILE),$(SCALA_VERSION_PROFILE),integrationtest -Dcxx="$(CXX)" \
mvn package -P$(SCALA_PKG_PROFILE),$(SCALA_VERSION_PROFILE) -Dcxx="$(CXX)" \
-Dbuild.platform="$(SCALA_PKG_PROFILE)" \
-Dcflags="$(CFLAGS)" -Dldflags="$(LDFLAGS)" \
-Dcurrent_libdir="$(ROOTDIR)/lib" \
Expand Down
10 changes: 4 additions & 6 deletions scala-package/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
<relativePath>../pom.xml</relativePath>
</parent>

<properties>
<skipTests>true</skipTests>
</properties>

<artifactId>mxnet-core_2.11</artifactId>
<name>MXNet Scala Package - Core</name>

Expand All @@ -20,12 +24,6 @@
<skipTests>false</skipTests>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>osx-x86_64-cpu</id>
<properties>
Expand Down
10 changes: 4 additions & 6 deletions scala-package/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,11 @@
<artifactId>mxnet-examples_2.11</artifactId>
<name>MXNet Scala Package - Examples</name>

<properties>
<skipTests>true</skipTests>
</properties>

<profiles>
<profile>
<id>unittest</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<properties>
Expand Down
10 changes: 4 additions & 6 deletions scala-package/infer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,17 @@
<artifactId>mxnet-infer_2.11</artifactId>
<name>MXNet Scala Package - Inference</name>

<properties>
<skipTests>true</skipTests>
</properties>

<profiles>
<profile>
<id>unittest</id>
<properties>
<skipTests>false</skipTests>
</properties>
</profile>
<profile>
<id>integrationtest</id>
<properties>
<skipTests>true</skipTests>
</properties>
</profile>
<profile>
<id>osx-x86_64-cpu</id>
<properties>
Expand Down

0 comments on commit 3ec9030

Please sign in to comment.