Skip to content

Commit 799b90f

Browse files
committedApr 3, 2024
Update build.yml
1 parent a7a901f commit 799b90f

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎.github/workflows/build.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,12 @@ jobs:
3030
- name: Build Windows
3131
run: bazel build --cxxopt=/MT -- //...
3232
if: matrix.os == 'windows-latest'
33-
- name: Set DYLD_LIBRARY_PATH for Darwin
33+
- name: Copy CLP libraries (Darwin)
3434
run: |
35-
export DYLD_LIBRARY_PATH=${GITHUB_WORKSPACE}/bazel-columngenerationsolver/external/clp_darwin/lib/
36-
echo ${DYLD_LIBRARY_PATH}
37-
ls ${DYLD_LIBRARY_PATH}
35+
mkdir -p "/Users/runner/work/Clp/Clp/dist"
36+
cp "${GITHUB_WORKSPACE}/bazel-columngenerationsolver/external/clp_darwin/lib" "/Users/runner/work/Clp/Clp/dist/"
37+
ls "/Users/runner/work/Clp/Clp/dist/"
38+
ls "/Users/runner/work/Clp/Clp/dist/lib/"
3839
if: matrix.os == 'macos-latest'
3940
- name: Run tests
4041
run: python3 -u scripts/run_tests.py test_results

0 commit comments

Comments
 (0)