-
Notifications
You must be signed in to change notification settings - Fork 2
110 lines (96 loc) · 3.5 KB
/
push_tests_mac.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: MacOS Tests
on: [push, pull_request, workflow_dispatch]
jobs:
test-macos-latest:
defaults:
run:
shell: bash -el {0}
name: Test CyRK on MacOS (latest; arm64)
runs-on: macos-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: cyrk_test
auto-update-conda: true
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- name: Conda info
shell: bash -el {0}
run: conda info
- name: install llvm # openMP does not play nice with clang on MacOS; also some versions of macos use older gcc so there is a need to install latest.
shell: bash -el {0}
run: |
brew install llvm libomp
- name: Install package
shell: bash -el {0}
# export CPPFLAGS="$CPPFLAGS -Xpreprocessor -fopenmp -lgomp"
run: |
conda install pytest matplotlib numba numpy scipy cython pytest-xdist
export LDFLAGS="-L/opt/homebrew/opt/llvm/lib"
export CPPFLAGS="-I/opt/homebrew/opt/llvm/include"
export LDFLAGS="-L/opt/homebrew/opt/libomp/lib"
export CPPFLAGS="-I/opt/homebrew/opt/libomp/include"
export CC=/opt/homebrew/opt/llvm/bin/clang
export CXX=/opt/homebrew/opt/llvm/bin/clang++
python -m pip install -v .
- name: Run pytest
shell: bash -el {0}
run: pytest -n auto --capture=sys -v Tests/
test-macos-13:
defaults:
run:
shell: bash -el {0}
name: Test CyRK on MacOS (v13; x64-86)
runs-on: macos-13
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: cyrk_test
auto-update-conda: true
python-version: ${{ matrix.python-version }}
auto-activate-base: false
- name: Conda info
shell: bash -el {0}
run: conda info
- name: install llvm # openMP does not play nice with clang on MacOS; also some versions of macos use older gcc so there is a need to install latest.
shell: bash -el {0}
run: |
brew install llvm libomp
- name: Install package
shell: bash -el {0}
# export CPPFLAGS="$CPPFLAGS -Xpreprocessor -fopenmp -lgomp"
run: |
conda install nomkl
conda install pytest matplotlib numba numpy scipy cython pytest-xdist
export LDFLAGS="-L/usr/local/opt/llvm/lib"
export CPPFLAGS="-I/usr/local/opt/llvm/include"
export LDFLAGS="-L/usr/local/opt/libomp/lib"
export CPPFLAGS="-I/usr/local/opt/libomp/include"
export CC=/usr/local/opt/llvm/bin/clang
export CXX=/usr/local/opt/llvm/bin/clang++
python -m pip install -v .
- name: Run pytest
shell: bash -el {0}
run: pytest -n auto --capture=sys -v Tests/