-
Notifications
You must be signed in to change notification settings - Fork 8
186 lines (144 loc) · 4.59 KB
/
build-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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# (C) Copyright 2020 ECMWF.
#
# This software is licensed under the terms of the Apache Licence Version 2.0
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
# In applying this licence, ECMWF does not waive the privileges and immunities
# granted to it by virtue of its status as an intergovernmental organisation
# nor does it submit to any jurisdiction.
name: Build MacOS Intel
on:
workflow_dispatch: {}
release:
types: [created]
# repository_dispatch:
# types: [eccodes-updated, magics-updated]
push:
paths:
- 'scripts/common.sh'
- 'scripts/build-macos.sh'
- 'scripts/wheel-macos.sh'
- 'tools/copy-licences.py'
jobs:
build:
# if: false
runs-on: macos-latest
name: Build
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- run: ./scripts/build-macos.sh
################################################################
- name: Set up Python 3.7
uses: actions/setup-python@v4
with:
python-version: 3.7
- run: ./scripts/wheel-macos.sh 3.7
- uses: actions/upload-artifact@v2
name: Upload wheel 3.7
with:
name: wheel-macos-3.7
path: wheelhouse/*.whl
################################################################
- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8
- run: ./scripts/wheel-macos.sh 3.8
- uses: actions/upload-artifact@v2
name: Upload wheel 3.8
with:
name: wheel-macos-3.8
path: wheelhouse/*.whl
################################################################
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- run: ./scripts/wheel-macos.sh 3.9
- uses: actions/upload-artifact@v2
name: Upload wheel 3.9
with:
name: wheel-macos-3.9
path: wheelhouse/*.whl
################################################################
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- run: ./scripts/wheel-macos.sh "3.10"
- uses: actions/upload-artifact@v2
name: Upload wheel 3.10
with:
name: wheel-macos-3.10
path: wheelhouse/*.whl
################################################################
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: "3.11"
- run: ./scripts/wheel-macos.sh "3.11"
- uses: actions/upload-artifact@v2
name: Upload wheel 3.11
with:
name: wheel-macos-3.11
path: wheelhouse/*.whl
test:
needs: build
runs-on: macos-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
name: Test with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
with:
name: wheel-macos-${{ matrix.python-version }}
# This is needed by mumpy and python 3.9
- run: pip install numpy
- run: pip install *.whl
- run: pip install -r tests/requirements.txt
- run: pip freeze
- name: Get some data
run: |
curl -L https://get.ecmwf.int/repository/test-data/metview/gallery/2m_temperature.grib -o data.grib
curl -L https://github.com/ecmwf/climetlab/raw/main/docs/examples/test.grib -o climetlab.grib
curl -L https://github.com/ecmwf/climetlab/raw/main/docs/examples/test.nc -o climetlab.nc
ls -l
working-directory: tests
- run: pytest -v -s
working-directory: tests
- uses: actions/upload-artifact@v2
with:
name: tests-macos-${{ matrix.python-version }}
path: tests/*.png
deploy:
if: ${{ github.event_name == 'release' }}
needs: [test, build]
name: Deploy wheel ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: pip install twine
- uses: actions/download-artifact@v2
with:
name: wheel-macos-${{ matrix.python-version }}
- run: twine upload *.whl
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}