summaryrefslogtreecommitdiff
path: root/crashbox-server/src/main/scala/io/crashbox/ci/Source.scala
blob: dffb5ea1d01707010132eaac1a3ec88f75733708 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package io.crashbox.ci

import java.io.File
import java.net.URL

import scala.concurrent.Future

import org.eclipse.jgit.api.Git

trait Source { self: Core =>

  def fetchSource(from: URL, to: File): Future[File] =
    Future {
      log.debug(s"Cloning git repo from $from to $to")
      Git.cloneRepository.setURI(from.toURI.toString).setDirectory(to).call()
      to
    }(blockingDispatcher)

}