-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
anna-skrodzka
committed
Nov 6, 2024
1 parent
bc0a073
commit 11f6947
Showing
3 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env -S bash -e | ||
. "$(dirname "$0")"/../../common.sh | ||
|
||
bazel build :bad_compile 2>&1 | grep 'You may be missing a `macro = True` attribute.' | ||
[ "$(bazel run :test_macro)" = "hello world!" ] | ||
[ "$(bazel run :test_macro_only)" = $'hello world!\nworld hello!' ] | ||
#bazel build //plugins/macros:bad_compile 2>&1 | grep 'You may be missing a `macro = True` attribute.' | ||
#[ "$(bazel run //plugins/macros:test_macro)" = "hello world!" ] | ||
#[ "$(bazel run :test_macro_only)" = $'hello world!\nworld hello!' ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
load("@rules_scala3//rules:scala.bzl", "scaladoc") | ||
|
||
scaladoc( | ||
name = "a_doc", | ||
srcs = [ | ||
"A.scala", | ||
"B.scala", | ||
], | ||
compiler_deps = [ | ||
"//3rdparty/jvm/org/scala_lang/modules:scala_xml", | ||
], | ||
scala = "//scala:2_13", | ||
deps = [ | ||
"//mockutil:mocklib", | ||
], | ||
) | ||
#load("@rules_scala3//rules:scala.bzl", "scaladoc") | ||
# | ||
#scaladoc( | ||
# name = "a_doc", | ||
# srcs = [ | ||
# "A.scala", | ||
# "B.scala", | ||
# ], | ||
# compiler_deps = [ | ||
# "//3rdparty/jvm/org/scala_lang/modules:scala_xml", | ||
# ], | ||
# scala = "@rules_scala3//scala:3_4", | ||
# deps = [ | ||
# "//mockutil:mocklib", | ||
# ], | ||
#) |