Skip to content

Commit

Permalink
github/ci: trying to resolve linker issues on macos runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed Dec 21, 2024
1 parent f76961e commit db33bd7
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,20 @@ jobs:
cd build
./xautotest -v -o autotest.json
- name: make install
- name: install
run: |
cd build
sudo make install
- name: ldconfig (Linux)
if: runner.os == 'Linux'
run: sudo ldconfig
- name: check installation (macos)
if: runner.os == 'macos'
run: |
gcc -Wall -O2 -rpath /usr/local/lib -o liquid_linker_test scripts/liquid_linker_test.c -lm -lc -lliquid
./liquid_linker_test
- name: check installation
run: make -f scripts/liquid_linker_test.mk
- name: check installation (linux)
if: runner.os == 'Linux'
run: |
sudo ldconfig
make -f scripts/liquid_linker_test.mk

0 comments on commit db33bd7

Please sign in to comment.