Skip to content

Commit

Permalink
[FB] Workflow | Part2 Try to fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
surapunoyousei committed Aug 20, 2024
1 parent f9222b6 commit 8249fc7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/macOS-generate-profile-data-and-jarlog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,17 @@ jobs:
name: floorp-mac-${{ env.ARCH_TYPE }}-build-with-profgen
path: ~/downloads/artifacts

- name: force install python3.11
- name: force install python3.12
continue-on-error: true
if: ${{ env.ARCH_TYPE == 'x86_64' }}
run: |
brew install python@3.12
- name: force link python3.12
continue-on-error: true
if: ${{ env.ARCH_TYPE == 'x86_64' }}
run: |
# due to "Error: The `brew link` step did not complete successfully" we need to force link python3.12
brew link --force --overwrite python@3.12
- uses: actions/setup-python@v5
Expand Down

0 comments on commit 8249fc7

Please sign in to comment.