-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bootstrap on M1/M2 mac. (#28609)
#28146 added bitarray to requirements.bouffalolab.txt, but that package requires native compilation during bootstrap. And bootstrap ends up using the pigweed-provided clang for that, but that clang is broken on M1/M2 mac. For now, stop pulling requirements.bouffalolab.txt into the general requirements.all.txt, so that bootstrap works for all the people not actively developing for bouffalolab. If it's re-added there later, it should be split up to make sure the bitarray bits are not pulled in. The action fixes are to make sure that for boufallolab CI we end up doing bootstrap with the right -p parameter to pull in requirements.bouffalolab.txt there.
- Loading branch information
1 parent
45f9abf
commit 4140784
Showing
3 changed files
with
8 additions
and
2 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,8 +1,13 @@ | ||
name: Bootstrap | ||
description: Bootstrap | ||
inputs: | ||
platform: | ||
description: "Platform name" | ||
required: false | ||
default: none | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Bootstrap | ||
shell: bash | ||
run: bash scripts/bootstrap.sh | ||
run: bash scripts/bootstrap.sh -p ${{ inputs.platform }} |
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