Skip to content

Commit

Permalink
[CORRECTIVE] Fixed library path for 64-bit Linux in testing workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
epekkar committed Mar 2, 2020
1 parent eb15d53 commit a7f1cac
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/code_analysis.yml
Expand Up @@ -25,7 +25,9 @@ jobs:
- name: Build sources
run: build-wrapper-linux-x86/build-wrapper-linux-x86-64 --out-dir bw-output make -j4
- name: Install shared libraries
run: sudo make -C IPXACTmodels install
run: |
sudo make -C IPXACTmodels install
sudo bash -c 'echo /usr/lib64/ > /etc/ld.so.conf.d/kactus2.conf'
- name: Build tests
# Build without -j to avoid colliding on compiling objects shared between tests.
run: |
Expand Down

0 comments on commit a7f1cac

Please sign in to comment.