Skip to content

Commit

Permalink
add droste
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed Aug 19, 2019
1 parent e50fc95 commit d26a5fb
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
21 changes: 21 additions & 0 deletions configs/community.dbuild
Original file line number Diff line number Diff line change
Expand Up @@ -2525,6 +2525,27 @@ build += {
extra.projects: ["coreJVM", "refinedJVM", "fs2JVM", "testsJVM"]
}

// depends on atto
${vars.base} {
name: "droste"
uri: ${vars.uris.droste-uri}
extra.exclude: [
// out of scope
"*JS", "docs", "readme", "publish", "coverage"
// [error] **** Missing dependency: the library io.github.stanch#reftree
"reftree"
]
extra.commands: ${vars.default-commands} [
// Scaladoc generation failure:
// java.lang.ArrayIndexOutOfBoundsException: 110
// scala.reflect.internal.util.BatchSourceFile.findLine$1(SourceFile.scala:199)
"set coreJVM / Compile / doc / sources := List()"
// StreamTests.monoid.combine all: Gave up after only 18 passed tests. 501 tests were discarded.
"""set testsJVM / Test / unmanagedSources / excludeFilter := HiddenFileFilter || "StreamTests.scala" || "ListTests.scala""""

]
}

// core doesn't depend on refined, but refinedJVM does.
// frozen (July 2019) just before ScalaTest 3.1 upgrade (2.13 support also)
${vars.base} {
Expand Down
1 change: 1 addition & 0 deletions configs/project-refs.conf
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ vars.uris: {
dispatch-uri: "https://github.com/dispatch/reboot.git#6dfe0c8" # was 0.14.x
doobie-uri: "https://github.com/tpolecat/doobie.git#series/0.6.x"
doodle-uri: "https://github.com/underscoreio/doodle.git"
droste-uri: "https://github.com/higherkindness/droste.git"
eff-uri: "https://github.com/atnos-org/eff.git"
elastic4s-uri: "https://github.com/sksamuel/elastic4s.git#release/5.4.x"
enumeratum-uri: "https://github.com/lloydmeta/enumeratum.git"
Expand Down

3 comments on commit d26a5fb

@SethTisue
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fyi @higherkindness @andyscott — note that I had to exclude a few failing tests

@andyscott
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh interesting. I'll file a ticket for later.

@andyscott
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.