Skip to content

Commit 29e6f3b

Browse files
committed
ci: suppress Homebrew tap trust warnings that block install
1 parent 6a842ff commit 29e6f3b

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/build-cache.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,9 @@ jobs:
8181
- uses: actions/checkout@v4
8282

8383
- name: Install deps
84-
run: brew install glfw glew
84+
run: |
85+
export HOMEBREW_NO_REQUIRE_TAP_TRUST=1
86+
brew install glfw glew
8587
8688
- name: Build cache
8789
run: |
@@ -111,7 +113,9 @@ jobs:
111113
- uses: actions/checkout@v4
112114

113115
- name: Install deps
114-
run: brew install glfw glew
116+
run: |
117+
export HOMEBREW_NO_REQUIRE_TAP_TRUST=1
118+
brew install glfw glew
115119
116120
- name: Build cache
117121
run: |

.github/workflows/build-macos-libs.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ jobs:
1313
- uses: actions/checkout@v4
1414

1515
- name: Install GLFW and GLEW
16-
run: brew install glfw glew
16+
run: |
17+
export HOMEBREW_NO_REQUIRE_TAP_TRUST=1
18+
brew install glfw glew
1719
1820
- name: Collect and fix dylib install names
1921
run: |
@@ -45,7 +47,9 @@ jobs:
4547
- uses: actions/checkout@v4
4648

4749
- name: Install GLFW and GLEW
48-
run: brew install glfw glew
50+
run: |
51+
export HOMEBREW_NO_REQUIRE_TAP_TRUST=1
52+
brew install glfw glew
4953
5054
- name: Collect and fix dylib install names
5155
run: |

0 commit comments

Comments
 (0)