Update build-arm64-mac.yml

This commit is contained in:
cmclark00 2024-10-15 14:29:43 -04:00 committed by GitHub
parent 66aa39d797
commit ead346ca84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,13 +22,18 @@ jobs:
brew update brew update
brew install cmake qt@6 brew install cmake qt@6
- name: Verify Qt Installation Path
run: |
echo "Qt is installed at: $(brew --prefix qt@6)"
ls -la $(brew --prefix qt@6)
- name: Configure and Build Retro-Imager - name: Configure and Build Retro-Imager
env: env:
CMAKE_PREFIX_PATH: "$(brew --prefix qt@6)" CMAKE_PREFIX_PATH: "$(brew --prefix qt@6)"
run: | run: |
mkdir -p build mkdir -p build
cd build cd build
cmake ../src cmake -DCMAKE_PREFIX_PATH=$(brew --prefix qt@6) ../src
make make
- name: Archive Build Artifacts - name: Archive Build Artifacts