diff options
| -rw-r--r-- | .github/workflows/validate.yml | 3 | ||||
| -rw-r--r-- | xmake.lua | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 7487297f4..99f2a4f8e 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -234,8 +234,9 @@ jobs: name: reports-macos path: build/reports/*.xml + # signing temporarily disabled due to runner issues - name: Bundle - if: ${{ matrix.config == 'release' }} + if: ${{ matrix.config == 'release' && 1 == 2 }} run: | xmake bundle -v -y --codesignidentity="Developer ID Application" env: @@ -93,12 +93,6 @@ if is_os("windows") then -- add_ldflags("/MAP") end -if is_os("macosx") then - -- temporary workaround for xcode 12.1 (UE minimum spec is 12.5) - -- TODO: once CI is updated we should remove this - add_defines("_LIBCPP_DISABLE_AVAILABILITY") -end - if is_os("linux") or is_os("macosx") then add_cxxflags("-Wno-implicit-fallthrough") add_cxxflags("-Wno-missing-field-initializers") |