Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Commit 9d6eaa6

Browse files
authored
Bazel 0.28 support (#197)
* Bazel 0.28 * Update some Protobuf dependencies * Scalafmt update Also updates the formatting of the source files using the updated scalafmt
1 parent 2acba6c commit 9d6eaa6

File tree

21 files changed

+90
-92
lines changed

21 files changed

+90
-92
lines changed

.bazelrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
common --config=rules
2-
common:v0.27 --config=rules_v0.27
2+
common:v0.28 --config=rules_v0.28
33
import %workspace%/.bazelrc_shared

.bazelrc_shared

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ test --test_output=all
1414
build:rules --disk_cache=.bazel_cache
1515
build:tests --disk_cache=../.bazel_cache
1616

17-
# bazel 0.27.0
18-
common:rules_v0.26 --config=noop
17+
# bazel 0.28.0
1918
common:rules_v0.27 --config=noop
19+
common:rules_v0.28 --config=noop
2020

2121
# route potentially unrouted configs to a terminating noop config
2222
# it's a noop because we use the default value
2323
common:rules --config=noop
2424
common:tests --config=noop
25-
common:v0.26 --config=rules_v0.26
2625
common:v0.27 --config=rules_v0.27
26+
common:v0.28 --config=rules_v0.28
2727

2828
# pick something trivial as a "noop"
2929
common:noop --logging=3

.scalafmt.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ rewrite.rules = [
1212
PreferCurlyFors,
1313
SortImports
1414
]
15-
unindentTopLevelOperators = true
15+
unindentTopLevelOperators = false

.travis.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -28,35 +28,35 @@ jobs:
2828
# Build
2929
- stage: build
3030
<<: *osx
31-
env: BAZEL_VERSION=0.26.1
31+
env: BAZEL_VERSION=0.27.2
3232
script: ./scripts/travis.sh build
3333
- <<: *linux
34-
env: BAZEL_VERSION=0.26.1
34+
env: BAZEL_VERSION=0.27.2
3535
script: ./scripts/travis.sh build
3636
- <<: *osx
37-
env: BAZEL_VERSION=0.27.0
37+
env: BAZEL_VERSION=0.28.0
3838
script: ./scripts/travis.sh build
3939
- <<: *linux
40-
env: BAZEL_VERSION=0.27.0
40+
env: BAZEL_VERSION=0.28.0
4141
script: ./scripts/travis.sh build
4242
# Lint
4343
- stage: test
4444
<<: *osx
45-
env: BAZEL_VERSION=0.26.1
45+
env: BAZEL_VERSION=0.27.2
4646
script: ./scripts/travis.sh lint
4747
- <<: *linux
48-
env: BAZEL_VERSION=0.27.0
48+
env: BAZEL_VERSION=0.28.0
4949
script: ./scripts/travis.sh lint
5050
# Test
5151
- <<: *osx
52-
env: BAZEL_VERSION=0.26.1
52+
env: BAZEL_VERSION=0.27.2
5353
script: ./scripts/travis.sh test
5454
- <<: *linux
55-
env: BAZEL_VERSION=0.26.1
55+
env: BAZEL_VERSION=0.27.2
5656
script: ./scripts/travis.sh test
5757
- <<: *osx
58-
env: BAZEL_VERSION=0.27.0
58+
env: BAZEL_VERSION=0.28.0
5959
script: ./scripts/travis.sh test
6060
- <<: *linux
61-
env: BAZEL_VERSION=0.27.0
61+
env: BAZEL_VERSION=0.28.0
6262
script: ./scripts/travis.sh test

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ git_repository(
2525

2626
http_archive(
2727
name = "com_google_protobuf",
28-
sha256 = "1e622ce4b84b88b6d2cdf1db38d1a634fe2392d74f0b7b74ff98f3a51838ee53",
29-
strip_prefix = "protobuf-3.8.0",
30-
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.8.0.zip"],
28+
sha256 = "8eb5ca331ab8ca0da2baea7fc0607d86c46c80845deca57109a5d637ccb93bb4",
29+
strip_prefix = "protobuf-3.9.0",
30+
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.9.0.zip"],
3131
)
3232

3333
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")

rules/scala/workspace.bzl

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def scala_repositories():
3131
"org.scala-sbt:zinc-classpath_2.12:1.2.1",
3232
"org.scala-sbt:compiler-interface:1.2.1",
3333
"ch.epfl.scala:bloop-frontend_2.12:1.0.0",
34-
"com.trueaccord.scalapb:scalapb-runtime_2.12:0.6.0",
34+
"com.thesamet.scalapb:scalapb-runtime_2.12:0.9.0",
3535
"org.scala-sbt:util-logging_2.12:1.2.0",
3636
],
3737
repositories = [

rules/scala_proto/workspace.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ def scala_proto_repositories():
77
maven_install(
88
name = "annex_proto",
99
artifacts = [
10-
"com.github.os72:protoc-jar:3.5.1.1",
11-
"com.thesamet.scalapb:compilerplugin_2.12:0.7.4",
12-
"com.thesamet.scalapb:protoc-bridge_2.12:0.7.3",
10+
"com.github.os72:protoc-jar:3.8.0",
11+
"com.thesamet.scalapb:compilerplugin_2.12:0.9.0",
12+
"com.thesamet.scalapb:protoc-bridge_2.12:0.7.8",
1313
],
1414
repositories = [
1515
"http://central.maven.org/maven2",

rules/scalafmt/BUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ scala_binary(
2424
"//src/main/scala/higherkindness/rules_scala/workers/common",
2525
"@annex//:net_sourceforge_argparse4j_argparse4j",
2626
"@annex_scalafmt//:com_geirsson_metaconfig_core_2_12",
27-
"@annex_scalafmt//:com_geirsson_scalafmt_core_2_12",
2827
"@annex_scalafmt//:org_scalameta_parsers_2_12",
28+
"@annex_scalafmt//:org_scalameta_scalafmt_core_2_12",
2929
],
3030
)
3131

rules/scalafmt/workspace.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ def scalafmt_repositories():
44
maven_install(
55
name = "annex_scalafmt",
66
artifacts = [
7-
"org.scalameta:parsers_2.12:1.7.0",
8-
"com.geirsson:metaconfig-core_2.12:0.4.0",
9-
"com.geirsson:scalafmt-core_2.12:1.5.1",
7+
"org.scalameta:parsers_2.12:4.2.0",
8+
"com.geirsson:metaconfig-core_2.12:0.8.3",
9+
"org.scalameta:scalafmt-core_2.12:jar:2.0.0",
1010
],
1111
repositories = [
1212
"http://central.maven.org/maven2",

scripts/setup-tools.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rm -fr external-tools/buildtools
2323

2424
mkdir -p external-tools/buildtools
2525
echo Downloading buildtools
26-
curl -L -sS https://github.com/bazelbuild/buildtools/archive/0.26.0.tar.gz | tar zxf - --strip 1 -C external-tools/buildtools
26+
curl -L -sS https://github.com/bazelbuild/buildtools/archive/0.28.0.tar.gz | tar zxf - --strip 1 -C external-tools/buildtools
2727
echo Building buildifier
2828
(cd external-tools/buildtools; bazel "${STARTUP_BAZEL_OPTS}" run "${BAZEL_OPTS[@]}" --script_path=../buildifier.sh buildifier)
2929

src/main/scala/higherkindness/rules_scala/common/sbt-testing/JUnitXmlReporter.scala

+35-37
Original file line numberDiff line numberDiff line change
@@ -14,55 +14,53 @@ class JUnitXmlReporter(tasksAndEvents: ListBuffer[(String, ListBuffer[Event])])
1414
def result: Elem =
1515
XML.loadString(s"""<testsuites>
1616
${(for ((name, events) <- tasksAndEvents)
17-
yield
18-
s"""<testsuite
17+
yield s"""<testsuite
1918
hostname=""
2019
name="${escape(name)}"
2120
tests="${events.size.toString}"
2221
errors="${events.count(_.status == Error).toString}"
2322
failures="${events.count(_.status == Failure).toString}"
2423
skipped="${events
25-
.count(e => e.status == Ignored || e.status == Skipped || e.status == Pending || e.status == Canceled)
26-
.toString}"
24+
.count(e => e.status == Ignored || e.status == Skipped || e.status == Pending || e.status == Canceled)
25+
.toString}"
2726
time="${(events.map(_.duration).sum / 1000d).toString}">
2827
${(for (e <- events)
29-
yield
30-
s"""<testcase
28+
yield s"""<testcase
3129
classname="${escape(name)}"
3230
name="${e.selector match {
33-
case selector: TestSelector => escape(selector.testName.split('.').last)
34-
case _ => "Error occurred outside of a test case."
35-
}}"
31+
case selector: TestSelector => escape(selector.testName.split('.').last)
32+
case _ => "Error occurred outside of a test case."
33+
}}"
3634
time="${(e.duration / 1000d).toString}">
3735
${
38-
val stringWriter = new StringWriter()
39-
if (e.throwable.isDefined) {
40-
val writer = new PrintWriter(stringWriter)
41-
e.throwable.get.printStackTrace(writer)
42-
writer.flush()
43-
}
44-
val trace: String = stringWriter.toString
45-
e.status match {
46-
case Status.Error if e.throwable.isDefined =>
47-
val t = e.throwable.get
48-
s"""<error message="${escape(t.getMessage)}" type="${escape(t.getClass.getName)}">${escape(trace)}</error>"""
49-
case Status.Error =>
50-
s"""<error message="No Exception or message provided"/>"""
51-
case Status.Failure if e.throwable.isDefined =>
52-
val t = e.throwable.get
53-
s"""<failure message="${escape(t.getMessage)}" type="${escape(t.getClass.getName)}">${escape(trace)}</failure>"""
54-
case Status.Failure =>
55-
s"""<failure message="No Exception or message provided"/>"""
56-
case Status.Canceled if e.throwable.isDefined =>
57-
val t = e.throwable.get
58-
s"""<skipped message="${escape(t.getMessage)}" type="${escape(t.getClass.getName)}">${escape(trace)}</skipped>"""
59-
case Status.Canceled =>
60-
s"""<skipped message="No Exception or message provided"/>"""
61-
case Status.Ignored | Status.Skipped | Status.Pending =>
62-
"<skipped/>"
63-
case _ =>
64-
}
65-
}
36+
val stringWriter = new StringWriter()
37+
if (e.throwable.isDefined) {
38+
val writer = new PrintWriter(stringWriter)
39+
e.throwable.get.printStackTrace(writer)
40+
writer.flush()
41+
}
42+
val trace: String = stringWriter.toString
43+
e.status match {
44+
case Status.Error if e.throwable.isDefined =>
45+
val t = e.throwable.get
46+
s"""<error message="${escape(t.getMessage)}" type="${escape(t.getClass.getName)}">${escape(trace)}</error>"""
47+
case Status.Error =>
48+
s"""<error message="No Exception or message provided"/>"""
49+
case Status.Failure if e.throwable.isDefined =>
50+
val t = e.throwable.get
51+
s"""<failure message="${escape(t.getMessage)}" type="${escape(t.getClass.getName)}">${escape(trace)}</failure>"""
52+
case Status.Failure =>
53+
s"""<failure message="No Exception or message provided"/>"""
54+
case Status.Canceled if e.throwable.isDefined =>
55+
val t = e.throwable.get
56+
s"""<skipped message="${escape(t.getMessage)}" type="${escape(t.getClass.getName)}">${escape(trace)}</skipped>"""
57+
case Status.Canceled =>
58+
s"""<skipped message="No Exception or message provided"/>"""
59+
case Status.Ignored | Status.Skipped | Status.Pending =>
60+
"<skipped/>"
61+
case _ =>
62+
}
63+
}
6664
</testcase>""").mkString("")}
6765
<system-out><![CDATA[]]></system-out>
6866
<system-err><![CDATA[]]></system-err>

src/main/scala/higherkindness/rules_scala/common/sbt-testing/Test.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class TestTaskExecutor(logger: Logger) {
7373
case _ =>
7474
}
7575
},
76-
Array(new PrefixedTestingLogger(logger, " ")),
76+
Array(new PrefixedTestingLogger(logger, " "))
7777
)
7878
tasks.foreach(execute)
7979
}

src/main/scala/higherkindness/rules_scala/workers/deps/DepsRunner.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ object DepsRunner extends WorkerMain[Unit] {
7070
groups.collectFirst { case (label, paths) if paths(path) => label }.orElse {
7171
System.err.println(s"Warning: There is a reference to $path, but no dependency of $label provides it")
7272
None
73-
}
73+
}
7474
)
7575
} else Nil
7676
add.foreach { depLabel =>

src/main/scala/higherkindness/rules_scala/workers/jacoco/instrumenter/JacocoInstrumenter.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ object JacocoInstrumenter extends WorkerMain[Unit] {
5151
case Array(in, out) => (Paths.get(in), Paths.get(out))
5252
case _ =>
5353
sys.error("expected input=output for argument: " + other)
54-
}
54+
}
5555
)
5656
.toList
5757

src/main/scala/higherkindness/rules_scala/workers/zinc/compile/AnalysisStore.scala

+4-4
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class AnxAnalysisStore(files: AnalysisFiles, analyses: AnxAnalyses) extends Anal
7979
apis = analyses.apis.read(files.apis),
8080
relations = analyses.relations.read(files.relations),
8181
infos = analyses.sourceInfos.read(files.sourceInfos),
82-
stamps = analyses.stamps.read(files.stamps),
82+
stamps = analyses.stamps.read(files.stamps)
8383
)
8484
val miniSetup = analyses.miniSetup.read(files.miniSetup)
8585
Optional.of(AnalysisContents.create(analysis, miniSetup))
@@ -123,7 +123,7 @@ class AnxAnalyses(format: AnxAnalysisStore.Format) {
123123

124124
def sourceInfos = new Store[SourceInfos](
125125
stream => reader.fromSourceInfos(format.read(schema.SourceInfos, stream)),
126-
(stream, value) => format.write(writer.toSourceInfos(value), stream),
126+
(stream, value) => format.write(writer.toSourceInfos(value), stream)
127127
)
128128

129129
def stamps = new Store[Stamps](
@@ -134,7 +134,7 @@ class AnxAnalyses(format: AnxAnalysisStore.Format) {
134134
private[this] val apiFileWrite: Lens[schema.APIs, schema.APIs] => Mutation[schema.APIs] =
135135
_.update(
136136
_.internal.foreachValue(_.compilationTimestamp := JarHelper.DEFAULT_TIMESTAMP),
137-
_.external.foreachValue(_.compilationTimestamp := JarHelper.DEFAULT_TIMESTAMP),
137+
_.external.foreachValue(_.compilationTimestamp := JarHelper.DEFAULT_TIMESTAMP)
138138
)
139139

140140
// Workaround for https://github.com/sbt/zinc/pull/532
@@ -157,7 +157,7 @@ class AnxAnalyses(format: AnxAnalysisStore.Format) {
157157
}),
158158
_.classes.foreach(_.modify {
159159
case (source, values) => mapper.mapSourceFile(new File(source)).toString -> values
160-
}),
160+
})
161161
)
162162
}
163163

src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincPersistence.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class FilePersistence(cacheDir: Path, analysisFiles: AnalysisFiles, jar: Path) e
1818
miniSetup = cacheDir.resolve("setup.gz"),
1919
relations = cacheDir.resolve("relations.gz"),
2020
sourceInfos = cacheDir.resolve("infos.gz"),
21-
stamps = cacheDir.resolve("stamps.gz"),
21+
stamps = cacheDir.resolve("stamps.gz")
2222
)
2323
private[this] val cacheJar = cacheDir.resolve("classes.jar")
2424

src/main/scala/higherkindness/rules_scala/workers/zinc/compile/ZincRunner.scala

+3-3
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ object ZincRunner extends WorkerMain[Namespace] {
123123
miniSetup = namespace.get[File]("output_setup").toPath,
124124
relations = namespace.get[File]("output_relations").toPath,
125125
sourceInfos = namespace.get[File]("output_infos").toPath,
126-
stamps = namespace.get[File]("output_stamps").toPath,
126+
stamps = namespace.get[File]("output_stamps").toPath
127127
)
128128
val analysesFormat = {
129129
val debug = namespace.getBoolean("debug")
@@ -182,7 +182,7 @@ object ZincRunner extends WorkerMain[Namespace] {
182182
.withScalacOptions(
183183
Array.concat(
184184
namespace.getList[File]("plugins").asScala.map(p => s"-Xplugin:$p").toArray,
185-
Option(namespace.getList[String]("compiler_option")).fold[Seq[String]](Nil)(_.asScala).toArray,
185+
Option(namespace.getList[String]("compiler_option")).fold[Seq[String]](Nil)(_.asScala).toArray
186186
)
187187
)
188188

@@ -206,7 +206,7 @@ object ZincRunner extends WorkerMain[Namespace] {
206206
Analysis.Empty.copy(
207207
apis = analysesFormat.apis.read(files.apis),
208208
relations = analysesFormat.relations.read(files.relations)
209-
)
209+
)
210210
)
211211
})
212212
}

tests/WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ git_repository(
1010

1111
http_archive(
1212
name = "com_google_protobuf",
13-
sha256 = "1e622ce4b84b88b6d2cdf1db38d1a634fe2392d74f0b7b74ff98f3a51838ee53",
14-
strip_prefix = "protobuf-3.8.0",
15-
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.8.0.zip"],
13+
sha256 = "8eb5ca331ab8ca0da2baea7fc0607d86c46c80845deca57109a5d637ccb93bb4",
14+
strip_prefix = "protobuf-3.9.0",
15+
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.9.0.zip"],
1616
)
1717

1818
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")

tests/proto/expected

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
-rw---- 1.0 fat 0 b- 0% stor 20100101.000000 anx/
44
-rw---- 1.0 fat 0 b- 0% stor 20100101.000000 anx/proto/
55
-rw---- 1.0 fat 0 b- 0% stor 20100101.000000 anx/proto/zero/
6-
-rw---- 2.0 fat 14895 b- 0% stor 20100101.000002 anx/proto/zero/Zero$.class
6+
-rw---- 2.0 fat 15074 b- 0% stor 20100101.000002 anx/proto/zero/Zero$.class
77
-rw---- 2.0 fat 4337 b- 0% stor 20100101.000002 anx/proto/zero/Zero$ZeroLens.class
8-
-rw---- 2.0 fat 19364 b- 0% stor 20100101.000002 anx/proto/zero/Zero.class
9-
-rw---- 2.0 fat 6429 b- 0% stor 20100101.000002 anx/proto/zero/ZeroProto$.class
10-
-rw---- 2.0 fat 1907 b- 0% stor 20100101.000002 anx/proto/zero/ZeroProto.class
8+
-rw---- 2.0 fat 19582 b- 0% stor 20100101.000002 anx/proto/zero/Zero.class
9+
-rw---- 2.0 fat 6648 b- 0% stor 20100101.000002 anx/proto/zero/ZeroProto$.class
10+
-rw---- 2.0 fat 1948 b- 0% stor 20100101.000002 anx/proto/zero/ZeroProto.class

tests/workspace.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ def maven_dependencies():
1414
"org.specs2:specs2-matcher_2.11:3.9.5",
1515
"org.specs2:specs2-common_2.11:3.9.5",
1616
"org.specs2:specs2-core_2.11:3.9.5",
17-
"com.thesamet.scalapb:scalapb-runtime_2.12:0.7.4",
18-
"com.thesamet.scalapb:lenses_2.12:0.7.0",
19-
"com.google.protobuf:protobuf-java:3.5.1",
17+
"com.thesamet.scalapb:scalapb-runtime_2.12:0.9.0",
18+
"com.thesamet.scalapb:lenses_2.12:0.9.0",
19+
"com.google.protobuf:protobuf-java:3.9.0",
2020
"org.scalatest:scalatest_2.12:3.0.4",
2121
"org.scalactic:scalactic_2.12:3.0.4",
2222
],

0 commit comments

Comments
 (0)