maint: remove arm64 from macosx
This commit is contained in:
parent
f4bc3857c3
commit
1b3eb2cfb2
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -130,7 +130,6 @@ jobs:
|
|||||||
- Release
|
- Release
|
||||||
arch:
|
arch:
|
||||||
- x64
|
- x64
|
||||||
- arm64
|
|
||||||
include:
|
include:
|
||||||
- configuration: Debug
|
- configuration: Debug
|
||||||
config: debug
|
config: debug
|
||||||
@ -138,8 +137,6 @@ jobs:
|
|||||||
config: release
|
config: release
|
||||||
- arch: x64
|
- arch: x64
|
||||||
platform: x64
|
platform: x64
|
||||||
- arch: arm64
|
|
||||||
platform: arm64
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out files
|
- name: Check out files
|
||||||
uses: actions/checkout@v3.5.3
|
uses: actions/checkout@v3.5.3
|
||||||
@ -163,11 +160,11 @@ jobs:
|
|||||||
- name: Build ${{matrix.configuration}} ${{matrix.arch}} binaries
|
- name: Build ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||||
run: |
|
run: |
|
||||||
pushd build
|
pushd build
|
||||||
make config=${{matrix.config}}_${{matrix.platform}} -j$(sysctl -n hw.logicalcpu)
|
make config=${{matrix.config}}_${{matrix.arch}} -j$(sysctl -n hw.logicalcpu)
|
||||||
|
|
||||||
- name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries
|
- name: Upload ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.2
|
||||||
with:
|
with:
|
||||||
name: macOS ${{matrix.configuration}} ${{matrix.arch}} binaries
|
name: macOS ${{matrix.configuration}} ${{matrix.arch}} binaries
|
||||||
path: |
|
path: |
|
||||||
build/bin/${{matrix.platform}}/${{matrix.configuration}}/alterware-master
|
build/bin/${{matrix.arch}}/${{matrix.configuration}}/alterware-master
|
||||||
|
@ -39,7 +39,7 @@ targetdir "%{wks.location}/bin/%{cfg.platform}/%{cfg.buildcfg}"
|
|||||||
configurations {"Debug", "Release"}
|
configurations {"Debug", "Release"}
|
||||||
|
|
||||||
if os.istarget("darwin") then
|
if os.istarget("darwin") then
|
||||||
platforms {"x64", "arm64"}
|
platforms {"x64"}
|
||||||
else
|
else
|
||||||
platforms {"x86", "x64"}
|
platforms {"x86", "x64"}
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user