Skip to content

Commit

Permalink
fix build macos arm
Browse files Browse the repository at this point in the history
  • Loading branch information
alemuntoni committed Feb 2, 2024
1 parent 5ecb663 commit 2e9ef54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/1_build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ runs:
- name: Cache external libraries sources
id: cache-ext-libs
if: ${{ inputs.cache-path != '' }}
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ inputs.cache-path }}
key: ${{ runner.os }}-${{ inputs.cache-key }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/BuildMeshLab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
os: ['ubuntu-20.04', 'macos-latest', 'macos-14', 'windows-latest']
precision: [single_precision, double_precision]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Environment
Expand All @@ -37,6 +37,11 @@ jobs:
else
echo "artifact_suffix=_$ARCH" >> $GITHUB_OUTPUT
fi
if [ "${{matrix.os}}" == "macos-14" ]; then
echo "build_options=--use_brew_qt" >> $GITHUB_OUTPUT
else
echo "build_options=" >> $GITHUB_OUTPUT
fi
- name: Build
uses: ./.github/actions/1_build
with:
Expand Down

0 comments on commit 2e9ef54

Please sign in to comment.