-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci] Update github caching to be more similar to drake-blender
- Ensure we use changing cache keys s.t. we actually update the cache - Update caching paths
- Loading branch information
1 parent
381424a
commit 9320a15
Showing
3 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
# This is symlinked by `./workflows/bazelized*.yml` actions in order to alter | ||
# Bazel's configuration for CI. This is similar to Drake's CI configuration: | ||
# https://github.com/RobotLocomotion/drake-ci/blob/0f2c2158/user.bazelrc#L42 | ||
# Bazel's configuration for CI. This is similar to drake-blender's CI | ||
# configuration: | ||
# https://github.com/RobotLocomotion/drake-blender/blob/c4a33f80/.github/ci.bazelrc | ||
|
||
# Dump configuration details to the log. | ||
common --announce_rc=yes | ||
|
||
common --experimental_ui_max_stdouterr_bytes=5242880 | ||
common --keep_going=yes | ||
|
||
test --test_summary=short | ||
|
||
# Paths for caching Bazel externals and disk cache. | ||
fetch --repository_cache /home/runner/.cache/ci/bazel_externals | ||
build --repository_cache /home/runner/.cache/ci/bazel_externals | ||
fetch --disk_cache /home/runner/.cache/ci/bazel_local_disk | ||
build --disk_cache /home/runner/.cache/ci/bazel_local_disk | ||
fetch --repository_cache /home/runner/.cache/bazel_ci/bazel_externals | ||
build --repository_cache /home/runner/.cache/bazel_ci/bazel_externals | ||
fetch --disk_cache /home/runner/.cache/bazel_ci/bazel_local_disk | ||
build --disk_cache /home/runner/.cache/bazel_ci/bazel_local_disk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters