Skip to content

Commit

Permalink
chore: remove unnecessary call to register_coreutils_toolchains() in …
Browse files Browse the repository at this point in the history
…e2e/coreutils (#393)
  • Loading branch information
gregmagolan committed Mar 11, 2023
1 parent e318673 commit 8255da2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -162,14 +162,13 @@ jobs:
rm -Force .aspect/bazelrc/bazel6.bazelrc
}
- name: Set bzlmod flag
# Store the --enable_bzlmod flag that we add to the test command below
# only when we're running bzlmod in our test matrix.
id: set_bzlmod_flag
if: matrix.bzlmodEnabled
run: echo "bzlmod_flag=--enable_bzlmod" >> $GITHUB_OUTPUT

- name: Write engflow credentials
if: ${{ matrix.config == 'rbe' }}
working-directory: ${{ matrix.folder }}
Expand Down Expand Up @@ -206,7 +205,7 @@ jobs:
--bazelrc=${{ github.workspace }}/.github/workflows/ci.bazelrc `
--bazelrc=${{ github.workspace }}/.aspect/bazelrc/bazel$BAZEL_MAJOR_VERSION.bazelrc `
--bazelrc=.bazelrc `
${{ steps.set_bzlmod_flag.outputs.bzlmod_flag }}
${{ steps.set_bzlmod_flag.outputs.bzlmod_flag }}
test --config=${{ matrix.config }} //...
env:
# Bazelisk will download bazel to here
Expand Down
4 changes: 1 addition & 3 deletions e2e/coreutils/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ local_repository(
path = "../..",
)

load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "register_coreutils_toolchains")
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies")

aspect_bazel_lib_dependencies()

register_coreutils_toolchains()

0 comments on commit 8255da2

Please sign in to comment.