Skip to content

Commit

Permalink
Don't attempt to save/restore the Bazel cache
Browse files Browse the repository at this point in the history
This causes us to run out of disk space.
  • Loading branch information
EdSchouten committed Mar 7, 2024
1 parent edf9179 commit 2dc77cd
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 21 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@
"name": "Check out source code",
"uses": "actions/checkout@v1"
},
{
"name": "Restore Bazel cache",
"uses": "actions/cache@v1",
"with": {
"key": "bazel",
"path": "~/.cache/bazel"
}
},
{
"name": "Gazelle",
"run": "bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro go_dependencies.bzl%go_dependencies -prune && bazel run //:gazelle"
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/pull-requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,6 @@
"name": "Check out source code",
"uses": "actions/checkout@v1"
},
{
"name": "Restore Bazel cache",
"uses": "actions/cache@v1",
"with": {
"key": "bazel",
"path": "~/.cache/bazel"
}
},
{
"name": "Gazelle",
"run": "bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro go_dependencies.bzl%go_dependencies -prune && bazel run //:gazelle"
Expand Down
5 changes: 0 additions & 5 deletions tools/github_workflows/workflows_template.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,6 @@
name: 'Check out source code',
uses: 'actions/checkout@v1',
},
{
name: 'Restore Bazel cache',
uses: 'actions/cache@v1',
with: { key: 'bazel', path: '~/.cache/bazel' },
},
{
name: 'Gazelle',
run: 'bazel run //:gazelle -- update-repos -from_file=go.mod -to_macro go_dependencies.bzl%go_dependencies -prune && bazel run //:gazelle',
Expand Down

0 comments on commit 2dc77cd

Please sign in to comment.