mirror of
https://github.com/drewcassidy/quicktex.git
synced 2024-09-13 06:37:34 +00:00
install openMP on macos
This commit is contained in:
parent
253b9c76ba
commit
6e0c855470
7
.github/workflows/python-package.yml
vendored
7
.github/workflows/python-package.yml
vendored
@ -15,7 +15,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python-version: [ 3.7, 3.8, 3.9 ]
|
python-version: [ 3.7, 3.8, 3.9 ]
|
||||||
os: [ macos-latest, windows-latest, Ubuntu-latest]
|
os: [ macos-latest, windows-latest, Ubuntu-latest ]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
@ -40,6 +40,11 @@ jobs:
|
|||||||
echo "CC=gcc-10" >> $GITHUB_ENV
|
echo "CC=gcc-10" >> $GITHUB_ENV
|
||||||
echo "CXX=g++-10" >> $GITHUB_ENV
|
echo "CXX=g++-10" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Set up macOS environment
|
||||||
|
if: runner.os == 'macOS'
|
||||||
|
# openMP isnt part of core apple clang for some reason?
|
||||||
|
run: brew install openmp
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
Loading…
Reference in New Issue
Block a user