Skip to content

Commit 6127dfd

Browse files
biboudissmarter
authored andcommitted
Add missing parameter and SemanticDB compilation to yml file
1 parent c2a538d commit 6127dfd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pipeline:
3131
image: lampepfl/dotty:2019-02-06
3232
commands:
3333
- cp -R . /tmp/2/ && cd /tmp/2/
34-
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test ;sjsSandbox/run"
34+
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test; dotty-semanticdb/compile; dotty-semanticdb/test;sjsSandbox/run"
3535
- ./project/scripts/bootstrapCmdTests
3636

3737
community_build:

semanticdb/src/dotty/semanticdb/SemanticdbConsumer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ class SemanticdbConsumer(sourceFilePath: java.nio.file.Path) extends TastyConsum
756756

757757
override def traverseTree(tree: Tree)(implicit ctx: Context): Unit = {
758758
tree match {
759-
case Import(path, selectors) =>
759+
case Import(_, path, selectors) =>
760760
val key = (tree.symbol.trueName, tree.pos.start)
761761
if (!packageDefinitions(key)) {
762762
packageDefinitions += key

0 commit comments

Comments
 (0)