Skip to content

Commit

Permalink
Add kubernetes profile to travis CI yml file (apache#21)
Browse files Browse the repository at this point in the history
* Add kubernetes profile to travis yml file

* Fix long lines in CompressionUtils.scala
  • Loading branch information
kimoonkim authored and foxish committed Jul 24, 2017
1 parent 0bcc391 commit 979fa92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ notifications:
# 5. Run maven install before running lint-java.
install:
- export MAVEN_SKIP_RC=1
- build/mvn -T 4 -q -DskipTests -Pmesos -Pyarn -Pkinesis-asl -Phive -Phive-thriftserver install
- build/mvn -T 4 -q -DskipTests -Pmesos -Pyarn -Phadoop-2.3 -Pkubernetes -Pkinesis-asl -Phive -Phive-thriftserver install

# 6. Run lint-java.
script:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ private[spark] object CompressionUtils extends Logging {

/**
* Compresses all of the given paths into a gzipped-tar archive, returning the compressed data in
* memory as an instance of {@link TarGzippedData}. The files are taken without consideration to their
* original folder structure, and are added to the tar archive in a flat hierarchy. Directories are
* not allowed, and duplicate file names are de-duplicated by appending a numeric suffix to the file name,
* before the file extension. For example, if paths a/b.txt and b/b.txt were provided, then the files added
* to the tar archive would be b.txt and b-1.txt.
* memory as an instance of {@link TarGzippedData}. The files are taken without consideration to
* their original folder structure, and are added to the tar archive in a flat hierarchy.
* Directories are not allowed, and duplicate file names are de-duplicated by appending a numeric
* suffix to the file name, before the file extension. For example, if paths a/b.txt and b/b.txt
* were provided, then the files added to the tar archive would be b.txt and b-1.txt.
* @param paths A list of file paths to be archived
* @return An in-memory representation of the compressed data.
*/
Expand Down

0 comments on commit 979fa92

Please sign in to comment.