diff --git a/.github/workflows/bazel.yml b/.github/workflows/bazel.yml index 3a20da6..386440a 100644 --- a/.github/workflows/bazel.yml +++ b/.github/workflows/bazel.yml @@ -12,10 +12,10 @@ jobs: folders: | [ ".", - "test/bazel", + "bazel/integration_test", ] exclude: | [ {"folder": ".", "bzlmodEnabled": false}, - {"folder": "test/bazel", "bzlmodEnabled": false}, + {"folder": "bazel/integration_test", "bzlmodEnabled": false}, ] diff --git a/.github/workflows/ci.bazelrc b/.github/workflows/ci.bazelrc deleted file mode 100644 index cb2a9b3..0000000 --- a/.github/workflows/ci.bazelrc +++ /dev/null @@ -1,18 +0,0 @@ -# This file contains Bazel settings to apply on CI only. -# It is referenced with a --bazelrc option in the call to bazel in ci.yaml - -# Debug where options came from -build --announce_rc - -# This directory is configured in GitHub actions to be persisted between runs. -# We do not enable the repository cache to cache downloaded external artifacts -# as these are generally faster to download again than to fetch them from the -# GitHub actions cache. -build --disk_cache=~/.cache/bazel - -# Don't rely on test logs being easily accessible from the test runner, -# though it makes the log noisier. -test --test_output=errors - -# Allows tests to run bazelisk-in-bazel, since this is the cache folder used -test --test_env=XDG_CACHE_HOME