Commit 5624bc4
{Build} Fix macos GitHub worfklow (facebookresearch#213)
Summary:
Summary of the encountered error:
```
Error: cmake was installed from the local/pinned tap
but you are trying to install it from the homebrew/core tap.
Formulae with the same name from different taps cannot be installed at the same time.
```
Solution:
- Use existing GitHub runner images Git and Ninja - so we avoid this Error
- Force update CMake to have CMake >= 4
Then another issue appears with BOOST being updated to `Boost-1.89.0` on mac
```
Could not find a package configuration file provided by "boost_system"
```
Solution:
- Boost.system is now a header only library and we don't need to "link" to it (boostorg/system#132 (comment))
Differential Revision: D816007281 parent 6c7f474 commit 5624bc4
File tree
2 files changed
+13
-10
lines changed- .github/workflows
- cmake
2 files changed
+13
-10
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
36 | | - | |
37 | | - | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
43 | 46 | | |
44 | 47 | | |
45 | 48 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
20 | | - | |
21 | | - | |
| 20 | + | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | | - | |
| 24 | + | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
| |||
0 commit comments