Skip to content

Commit 646380a

Browse files
authored
ci(fix): Remove capnp caching on macOS (#11129)
### Description Follow-up to #11127. We will live with no caching for now, and revisit in the future. ### Testing Instructions CI
1 parent e791a35 commit 646380a

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/actions/setup-capnproto/action.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,6 @@ runs:
1414
/usr/bin/capnpc
1515
key: ${{ runner.os }}-capnproto-0.11.2
1616

17-
- name: "Cache capnproto (macOS)"
18-
if: runner.os == 'macOS' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
19-
uses: actions/cache@v4
20-
id: cache-capnp-macos
21-
with:
22-
path: |
23-
/usr/local/bin/capnp
24-
/usr/local/bin/capnpc
25-
/opt/homebrew/bin/capnp
26-
/opt/homebrew/bin/capnpc
27-
key: ${{ runner.os }}-capnproto-0.11.2
28-
2917
- name: "Cache capnproto (Windows)"
3018
if: runner.os == 'Windows' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository)
3119
uses: actions/cache@v4
@@ -42,7 +30,7 @@ runs:
4230
run: sudo apt-get -y update && sudo apt-get install -y capnproto
4331

4432
- name: "Setup capnproto for macos"
45-
if: runner.os == 'macOS' && (steps.cache-capnp-macos.outcome == 'skipped' || steps.cache-capnp-macos.outputs.cache-hit != 'true')
33+
if: runner.os == 'macOS'
4634
shell: bash
4735
run: brew install capnp
4836

0 commit comments

Comments
 (0)