Skip to content

Commit

Permalink
try universal architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
nschimme committed Jul 28, 2023
1 parent 6faf648 commit 3dd691f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
brew install qt6 openssl\@3
brew link qt6 --force
echo "$(brew --prefix qt6)/bin" >> $GITHUB_PATH
echo "MMAPPER_CMAKE_EXTRA=-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3" >> $GITHUB_ENV
echo "MMAPPER_CMAKE_EXTRA=-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl@3 -DCMAKE_OSX_ARCHITECTURES=\"x86_64;arm64\" -DTARGET_ARCHITECTURE=Universal" >> $GITHUB_ENV
#
Expand Down Expand Up @@ -194,17 +194,17 @@ jobs:
name: Upload Package for Mac
uses: actions/upload-artifact@v3
with:
name: build-test Mac ${{ matrix.os }} ${{ matrix.compiler }}
name: build-test Mac ${{ matrix.os }} ${{ matrix.compiler }} ${{ matrix.qt }}
path: ${{ github.workspace }}/artifact/*.dmg
- if: contains( matrix.os, 'ubuntu' )
name: Upload Package for Ubuntu
uses: actions/upload-artifact@v3
with:
name: build-test Linux ${{ matrix.os }} ${{ matrix.compiler }}
name: build-test Linux ${{ matrix.os }} ${{ matrix.compiler }} ${{ matrix.qt }}
path: ${{ github.workspace }}/artifact/*.deb
- if: runner.os == 'Windows'
name: Upload Package for Windows
uses: actions/upload-artifact@v3
with:
name: build-test Windows ${{ matrix.os }} ${{ matrix.compiler }}
name: build-test Windows ${{ matrix.os }} ${{ matrix.compiler }} ${{ matrix.qt }}
path: ${{ github.workspace }}/artifact/*.exe

0 comments on commit 3dd691f

Please sign in to comment.