Skip to content

Commit

Permalink
set library path before configure script
Browse files Browse the repository at this point in the history
  • Loading branch information
rem1776 authored Jun 6, 2024
1 parent 6504f71 commit 041013a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/github_autotools_intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,10 @@ jobs:
- name: checkout
uses: actions/checkout@v4
- name: Configure
run: autoreconf -if ./configure.ac && ./configure --with-yaml ${{ matrix.io-flag }}
run: |
autoreconf -if ./configure.ac
export LD_LIBRARY_PATH="/libs/lib:$LD_LIBRARY_PATH"
./configure --with-yaml ${{ matrix.io-flag }}
- name: Compile
run: make -j || make
- name: Run test suite
Expand Down

0 comments on commit 041013a

Please sign in to comment.