-
Notifications
You must be signed in to change notification settings - Fork 5
79 lines (68 loc) · 2.1 KB
/
macos.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
name: MacOS Build
on:
push:
branches: [ dev ]
tags:
- v*
pull_request:
branches: [ dev ]
jobs:
build:
runs-on: macos-latest
if: ${{ startsWith(github.ref, 'refs/tags') || !contains(github.event.head_commit.message, '[skip ci]') }}
steps:
- uses: actions/checkout@v2
- name: Install Python
run: |
brew install [email protected]
brew install [email protected]
brew install [email protected]
brew install [email protected]
- name: Checkout submodules
run: |
git submodule init
git submodule update
- name: Build zlib
run: |
git clone https://github.com/madler/zlib.git
mkdir zlib-build
cd zlib-build
cmake ../zlib -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../zlib-install
make install
cd ..
- name: Build ITK
run: |
mkdir ITK-build
cd ITK-build
cmake \
-DBUILD_SHARED_LIBS=OFF \
-DBUILD_TESTING=OFF \
-DBUILD_EXAMPLES=OFF \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=../ITK-install \
../ITK
make install
cd ..
- name: Build samseg
run: |
.github/workflows/macos_build.sh /usr/local/bin/python3.8
.github/workflows/macos_build.sh /usr/local/bin/python3.9
.github/workflows/macos_build.sh /usr/local/bin/python3.10
.github/workflows/macos_build.sh /usr/local/bin/python3.11
env:
ITK_DIR: ITK-install
ZLIB_INCLUDE_DIR: zlib-install/include
ZLIB_LIBRARY: zlib-install/lib/libz.a
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: macos-wheels
path: dist/*.whl
- name: Upload to PyPI
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags') }}
run: |
$PYTHON -m pip install twine
$PYTHON -m twine upload dist/*.whl -u __token__ -p "$PASSWORD"
env:
PASSWORD: ${{ secrets.PYPI_TOKEN }}
PYTHON: /Library/Frameworks/Python.framework/Versions/3.8/bin/python3