Skip to content

Commit

Permalink
Attempt to fix mlua-sys build on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Feb 8, 2024
1 parent d0e500f commit 709e0d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ jobs:
name: Test
runs-on: macos-latest
env:
MACOSX_DEPLOYMENT_TARGET: 10.7
# TODO-high This is temporarily 10.9 (should be 10.7) until https://github.com/rust-lang/cc-rs/issues/902 is fixed
MACOSX_DEPLOYMENT_TARGET: 10.9
steps:
# Checkout with Playtime Clip Engine
- uses: actions/checkout@v2
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ jobs:
# profile: release
# features: ""
env:
MACOSX_DEPLOYMENT_TARGET: 10.7 # This is relevant for macOS builds only (and only if not overridden).
# This is relevant for macOS builds only (and only if not overridden).
# TODO-high This is temporarily 10.9 (should be 10.7) until https://github.com/rust-lang/cc-rs/issues/902 is fixed
MACOSX_DEPLOYMENT_TARGET: 10.9
steps:
# Prepare (all)
- name: Checkout
Expand Down Expand Up @@ -120,6 +122,8 @@ jobs:
- name: cargo test (for generating dialogs with php)
if: matrix.use-cross == true
uses: actions-rs/cargo@v1
env:
RUST_MIN_STACK: 5242880
with:
command: test
args: --features "${{ matrix.features }}"
Expand Down

0 comments on commit 709e0d4

Please sign in to comment.