Skip to content

Commit

Permalink
fix: enable CI workflow generation after fixing bzltidy (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgrindel authored Nov 18, 2023
1 parent ab1270e commit 737b160
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 13 deletions.
18 changes: 9 additions & 9 deletions BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ load(
"bzlformat_pkg",
)
load("//bzltidy:defs.bzl", "tidy", "tidy_all")
load("//ci:defs.bzl", "ci_workflow")
load("//shlib/rules:execute_binary.bzl", "execute_binary")
load("//tests:integration_test_common.bzl", "INTEGRATION_TEST_TAGS")
load("//updatesrc:defs.bzl", "updatesrc_update_all")
Expand Down Expand Up @@ -237,15 +238,14 @@ test_suite(
visibility = ["//:__subpackages__"],
)

# GH368: Enable when this is generating the proper output
# ci_workflow(
# name = "ci_workflow",
# test_params = [
# "{}:all_test_params".format(pkg)
# for pkg in _INTEGRATION_TEST_PKGS
# ],
# workflow_yml = ".github/workflows/ci.yml",
# )
ci_workflow(
name = "ci_workflow",
test_params = [
"{}:all_test_params".format(pkg)
for pkg in _INTEGRATION_TEST_PKGS
],
workflow_yml = ".github/workflows/ci.yml",
)

bzl_library(
name = "deps",
Expand Down
5 changes: 1 addition & 4 deletions tests/bzltidy_tests/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,6 @@ ci_integration_test_params(
"linux",
"macos",
],
test_names = integration_test_utils.bazel_integration_test_names(
"tidy_all_test",
bazel_binaries.versions.all,
),
test_names = ["tidy_all_test"],
visibility = ["//:__subpackages__"],
)

0 comments on commit 737b160

Please sign in to comment.