Skip to content

Commit f5bac2b

Browse files
committed
Set DYLD_LIBRARY_PATH for macOS
1 parent 0c73cb4 commit f5bac2b

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ jobs:
5858
[
5959
{
6060
os: "macOS-latest",
61-
python-architecture: "aarch64",
62-
rust-target: "aarch64-apple-darwin",
61+
python-architecture: "x64",
62+
rust-target: "x86_64-apple-darwin",
6363
},
6464
{
6565
os: "ubuntu-latest",
@@ -108,6 +108,11 @@ jobs:
108108
steps:
109109
- uses: actions/checkout@v4
110110

111+
- name: Set DYLD_LIBRARY_PATH (macOS)
112+
if: runner.os == 'macOS'
113+
run: |
114+
echo "DYLD_LIBRARY_PATH=/usr/local/opt/gettext/lib:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
115+
111116
- name: Set up Python ${{ matrix.python-version }}
112117
uses: actions/setup-python@v5
113118
with:

0 commit comments

Comments
 (0)