Skip to content

Commit

Permalink
fix (build): Invoke evilurl via Bazel
Browse files Browse the repository at this point in the history
  • Loading branch information
vorburger committed Mar 8, 2025
1 parent baf5bcf commit 1c7012a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
19 changes: 19 additions & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,22 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

sh_test(
name = "evilurl",
srcs = ["tools/evilurl/test.bash"],
data = glob(
# TODO How to? ["java/**/*.java"],
[
"**/*.java",
],
exclude = [
# "bazel-bin/evilurl.runfiles/**",
"bazel-bin/external/**",
"bazel-bin/java/**",
"bazel-out/**",
# "bazel-testlogs/**",
# "bazel-enola/**",
],
),
)
3 changes: 0 additions & 3 deletions test.bash
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@ fi

tools/version/version.bash

# TODO Remove this once evilurl is Bazel test BUILD integrated...
tools/evilurl/test.bash

# https://github.com/bazelbuild/bazel/issues/4257
echo $ Bazel testing...
if [ -z "${CI:-""}" ]; then
Expand Down

0 comments on commit 1c7012a

Please sign in to comment.