Skip to content

Commit 450ff09

Browse files
committed
fix (build): Invoke evilurl via Bazel
1 parent 963e83e commit 450ff09

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

BUILD

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,9 @@
1313
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
16+
17+
sh_test(
18+
name = "evilurl",
19+
srcs = ["//tools/evilurl"],
20+
data = glob(["**/*.java"]),
21+
)

test.bash

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@ fi
3939

4040
tools/version/version.bash
4141

42-
# TODO Remove this once evilurl is Bazel test BUILD integrated...
43-
tools/evilurl/test.bash
44-
4542
# https://github.com/bazelbuild/bazel/issues/4257
4643
echo $ Bazel testing...
4744
if [ -z "${CI:-""}" ]; then

tools/evilurl/BUILD

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
sh_binary(
2+
name = "evilurl",
3+
srcs = ["test.sh"],
4+
visibility = ["//:__subpackages__"],
5+
)

0 commit comments

Comments
 (0)