Skip to content

Commit

Permalink
try libomp-14-dev on clang
Browse files Browse the repository at this point in the history
  • Loading branch information
MikaelSlevinsky committed Dec 7, 2022
1 parent b1bc48b commit 0df512b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,16 @@ jobs:
LD_LIBRARY_PATH: $LD_LIBRARY_PATH:.
steps:
- uses: actions/checkout@v3
- name: Install dependencies on ubuntu
if: startsWith(matrix.os, 'ubuntu')
- name: Install dependencies on ubuntu gcc
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.compiler, 'gcc')
run: |
sudo apt-get update
sudo apt-get install libomp-11-dev libblas-dev libopenblas-base libfftw3-dev libmpfr-dev
- name: Install dependencies on ubuntu clang
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.compiler, 'clang')
run: |
sudo apt-get update
sudo apt-get install libomp-14-dev libblas-dev libopenblas-base libfftw3-dev libmpfr-dev
- name: Install dependencies on macOS
if: startsWith(matrix.os, 'macOS')
run: |
Expand Down

0 comments on commit 0df512b

Please sign in to comment.