mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Merge pull request #671 from twvd/universal
Add MacOS ARM64 and Universal builds to GitHub Actions
This commit is contained in:
commit
4af4780f18
4 changed files with 131 additions and 24 deletions
52
.github/workflows/MacOS_Build.yml
vendored
52
.github/workflows/MacOS_Build.yml
vendored
|
@ -12,10 +12,11 @@ env:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
# The CMake configure and build commands are platform agnostic and should work equally
|
strategy:
|
||||||
# well on Windows or Mac. You can convert this to a matrix build if you need
|
matrix:
|
||||||
# cross-platform coverage.
|
arch: [x86_64, arm64]
|
||||||
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
|
||||||
|
name: MacOS-${{ matrix.arch }}
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -33,7 +34,7 @@ jobs:
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
|
||||||
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
|
||||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
# Build your program with the given configuration
|
# Build your program with the given configuration
|
||||||
|
@ -49,10 +50,45 @@ jobs:
|
||||||
run: codesign --force -s - -vvvv Alber.app
|
run: codesign --force -s - -vvvv Alber.app
|
||||||
|
|
||||||
- name: Zip it up
|
- name: Zip it up
|
||||||
run: zip -r Alber Alber.app
|
run: zip -r Alber-${{ matrix.arch }} Alber.app
|
||||||
|
|
||||||
- name: Upload MacOS App
|
- name: Upload MacOS App
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MacOS Alber App Bundle
|
name: MacOS Alber App Bundle (${{ matrix.arch }})
|
||||||
path: 'Alber.zip'
|
path: Alber-${{ matrix.arch }}.zip
|
||||||
|
|
||||||
|
MacOS-Universal:
|
||||||
|
name: MacOS-Universal
|
||||||
|
needs: [build]
|
||||||
|
runs-on: macos-13
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download x86_64
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: MacOS Alber App Bundle (x86_64)
|
||||||
|
path: x86_64
|
||||||
|
- name: Download ARM64
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: MacOS Alber App Bundle (arm64)
|
||||||
|
path: arm64
|
||||||
|
- name: Combine app bundles
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -x
|
||||||
|
unzip x86_64/*.zip -d x86_64
|
||||||
|
unzip arm64/*.zip -d arm64
|
||||||
|
lipo {x86_64,arm64}/Alber.app/Contents/MacOS/Alber -create -output Alber
|
||||||
|
cp -v -a arm64/Alber.app Alber.app
|
||||||
|
cp -v Alber Alber.app/Contents/MacOS/Alber
|
||||||
|
# Mix in x86_64 files that do not appear in the ARM64 build (e.g. libvulkan)
|
||||||
|
cp -v -R -n x86_64/Alber.app/* Alber.app/ || true
|
||||||
|
codesign --force -s - -vvvv Alber.app
|
||||||
|
zip -r -y Alber-universal.zip Alber.app
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: MacOS Alber App Bundle (universal)
|
||||||
|
path: Alber-universal.zip
|
||||||
|
|
58
.github/workflows/Qt_Build.yml
vendored
58
.github/workflows/Qt_Build.yml
vendored
|
@ -51,6 +51,11 @@ jobs:
|
||||||
path: upload
|
path: upload
|
||||||
|
|
||||||
MacOS:
|
MacOS:
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
arch: [x86_64, arm64]
|
||||||
|
|
||||||
|
name: MacOS-${{ matrix.arch }}
|
||||||
runs-on: macos-13
|
runs-on: macos-13
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -69,11 +74,17 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
brew install dylibbundler imagemagick
|
brew install dylibbundler imagemagick
|
||||||
|
|
||||||
- name: Install qt
|
- name: Install Qt
|
||||||
run: brew install qt && which macdeployqt
|
uses: jurplel/install-qt-action@v3
|
||||||
|
with:
|
||||||
|
aqtversion: '==3.1.*'
|
||||||
|
version: '6.8.1'
|
||||||
|
host: 'mac'
|
||||||
|
target: 'desktop'
|
||||||
|
arch: 'clang_64'
|
||||||
|
|
||||||
- name: Configure CMake
|
- name: Configure CMake
|
||||||
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DENABLE_QT_GUI=ON
|
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DENABLE_USER_BUILD=ON -DENABLE_QT_GUI=ON -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
|
||||||
|
@ -87,13 +98,48 @@ jobs:
|
||||||
run: codesign --force -s - -vvvv Alber.app
|
run: codesign --force -s - -vvvv Alber.app
|
||||||
|
|
||||||
- name: Zip it up
|
- name: Zip it up
|
||||||
run: zip -r Alber Alber.app
|
run: zip -r Alber-${{ matrix.arch }} Alber.app
|
||||||
|
|
||||||
- name: Upload MacOS App
|
- name: Upload MacOS App
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: MacOS Alber App Bundle
|
name: MacOS Alber App Bundle (${{ matrix.arch }})
|
||||||
path: 'Alber.zip'
|
path: Alber-${{ matrix.arch }}.zip
|
||||||
|
|
||||||
|
MacOS-Universal:
|
||||||
|
name: MacOS-Universal
|
||||||
|
needs: [MacOS]
|
||||||
|
runs-on: macos-13
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Download x86_64
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: MacOS Alber App Bundle (x86_64)
|
||||||
|
path: x86_64
|
||||||
|
- name: Download ARM64
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
name: MacOS Alber App Bundle (arm64)
|
||||||
|
path: arm64
|
||||||
|
- name: Combine app bundles
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
set -x
|
||||||
|
unzip x86_64/*.zip -d x86_64
|
||||||
|
unzip arm64/*.zip -d arm64
|
||||||
|
lipo {x86_64,arm64}/Alber.app/Contents/MacOS/Alber -create -output Alber
|
||||||
|
cp -v -a arm64/Alber.app Alber.app
|
||||||
|
cp -v Alber Alber.app/Contents/MacOS/Alber
|
||||||
|
# Mix in x86_64 files that do not appear in the ARM64 build (e.g. libvulkan)
|
||||||
|
cp -v -R -n x86_64/Alber.app/* Alber.app/ || true
|
||||||
|
codesign --force -s - -vvvv Alber.app
|
||||||
|
zip -r -y Alber-universal.zip Alber.app
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: MacOS Alber App Bundle (universal)
|
||||||
|
path: Alber-universal.zip
|
||||||
|
|
||||||
Linux:
|
Linux:
|
||||||
runs-on: ubuntu-24.04
|
runs-on: ubuntu-24.04
|
||||||
|
|
|
@ -217,26 +217,51 @@ if(ENABLE_LUAJIT)
|
||||||
target_link_libraries(AlberCore PRIVATE libluajit)
|
target_link_libraries(AlberCore PRIVATE libluajit)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Check for x64
|
# Detect target architecture
|
||||||
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86-64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
|
if (NOT APPLE OR "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "")
|
||||||
|
# Normal target detection
|
||||||
|
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "AMD64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86-64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64")
|
||||||
set(HOST_X64 TRUE)
|
set(HOST_X64 TRUE)
|
||||||
|
else()
|
||||||
|
set(HOST_X64 FALSE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
|
||||||
|
set(HOST_ARM64 TRUE)
|
||||||
|
else()
|
||||||
|
set(HOST_ARM64 FALSE)
|
||||||
|
endif()
|
||||||
|
else()
|
||||||
|
# Apple target detection
|
||||||
|
if("x86_64" IN_LIST CMAKE_OSX_ARCHITECTURES)
|
||||||
|
set(HOST_X64 TRUE)
|
||||||
|
else()
|
||||||
|
set(HOST_X64 FALSE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if("arm64" IN_LIST CMAKE_OSX_ARCHITECTURES)
|
||||||
|
set(HOST_ARM64 TRUE)
|
||||||
|
else()
|
||||||
|
set(HOST_ARM64 FALSE)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (HOST_ARM64 AND HOST_X64)
|
||||||
|
message(FATAL_ERROR "Universal builds not supported like this! Please compile separately and stitch together")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if (HOST_X64)
|
||||||
add_subdirectory(third_party/xbyak) # Add xbyak submodule for x86 JITs
|
add_subdirectory(third_party/xbyak) # Add xbyak submodule for x86 JITs
|
||||||
include_directories(third_party/xbyak)
|
include_directories(third_party/xbyak)
|
||||||
add_compile_definitions(PANDA3DS_DYNAPICA_SUPPORTED)
|
add_compile_definitions(PANDA3DS_DYNAPICA_SUPPORTED)
|
||||||
add_compile_definitions(PANDA3DS_X64_HOST)
|
add_compile_definitions(PANDA3DS_X64_HOST)
|
||||||
else()
|
|
||||||
set(HOST_X64 FALSE)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Check for arm64
|
if (HOST_ARM64)
|
||||||
if (CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "arm64")
|
|
||||||
set(HOST_ARM64 TRUE)
|
|
||||||
add_subdirectory(third_party/oaknut) # Add Oaknut submodule for arm64 JITs
|
add_subdirectory(third_party/oaknut) # Add Oaknut submodule for arm64 JITs
|
||||||
include_directories(third_party/oaknut/include)
|
include_directories(third_party/oaknut/include)
|
||||||
add_compile_definitions(PANDA3DS_DYNAPICA_SUPPORTED)
|
add_compile_definitions(PANDA3DS_DYNAPICA_SUPPORTED)
|
||||||
add_compile_definitions(PANDA3DS_ARM64_HOST)
|
add_compile_definitions(PANDA3DS_ARM64_HOST)
|
||||||
else()
|
|
||||||
set(HOST_ARM64 FALSE)
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Enable SSE4.1 if it's not explicitly disabled
|
# Enable SSE4.1 if it's not explicitly disabled
|
||||||
|
|
2
third_party/LuaJIT
vendored
2
third_party/LuaJIT
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit 41edf0959b9504d36dd85f5f16893c004ea7d7ba
|
Subproject commit 8bf7686d820f868eae1a522c481fee09c18c90b9
|
Loading…
Add table
Reference in a new issue