diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-09-29 22:19:36 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2021-09-29 22:31:12 +0200 |
commit | 67f9109d1f47f4f351ae8ae16281bb2bd9203fd7 (patch) | |
tree | 0f9d613fef7a218b77df26c7ac8d87aae990c04e /.github/workflows | |
parent | ad11bbb5845a454551d490812631922c33b7601c (diff) | |
download | redot-cpp-67f9109d1f47f4f351ae8ae16281bb2bd9203fd7.tar.gz |
[OSX] Add universal build support.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fecd62e..a4b2703 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -116,13 +116,13 @@ jobs: - name: Build godot-cpp run: | - scons target=release generate_bindings=yes -j $(sysctl -n hw.logicalcpu) + scons target=release generate_bindings=yes macos_arch=x86_64 -j $(sysctl -n hw.logicalcpu) - name: Upload artifact uses: actions/upload-artifact@v2 with: name: godot-cpp-macos-x86_64-release - path: bin/libgodot-cpp.osx.release.64.a + path: bin/libgodot-cpp.osx.release.x86_64.a if-no-files-found: error macos-arm64: |