We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 32f8857 commit 382057eCopy full SHA for 382057e
.github/workflows/build_executables.yml
@@ -75,6 +75,16 @@ jobs:
75
uses: actions/setup-python@v5
76
with:
77
python-version: "3.10" # Specify your Python version
78
+
79
+ - name: Check if Python is a fat binary
80
+ run: |
81
+ if lipo -info $(which python3) | grep -q "Architectures in the fat file"; then
82
+ lipo -info $(which python3)
83
+ echo "Python is a fat binary."
84
+ else
85
+ echo "Python is NOT a fat binary."
86
+ exit 1 # Optional: Exit with error if you require a fat binary
87
+ fi
88
89
- name: Install Homebrew dependencies
90
run: |
0 commit comments