-
Notifications
You must be signed in to change notification settings - Fork 109
65 lines (46 loc) · 1.24 KB
/
build_osx.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
name: Build Tick on OSX
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
MKN_COMPILE_THREADS: 2
jobs:
build:
name: Python ${{ matrix.python-version }}
runs-on: macos-latest
strategy:
fail-fast: false
max-parallel: 4
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: info
run: |
python3 -V
clang -v
swig -version
- name: pip
run: |
python3 -m pip install wheel pip --upgrade
python3 -m pip install -r requirements.txt
- name: build
run: |
curl -Lo mkn https://github.com/mkn/mkn/releases/download/latest/mkn_osx
chmod +x mkn
PATH=$PWD:$PATH KLOG=3 mkn -C lib clean build -g 0 -tOa "-fPIC -std=c++17"
- name: cpptest
run: |
PATH=$PWD:$PATH KLOG=3 mkn -C lib -p gtest build run test -dOta "-fPIC -std=c++17"
- name: pytest
run: |
python -m unittest discover -v . "*_test.py"
# echo "Tests not run until test failures assessed./"