-
-
Notifications
You must be signed in to change notification settings - Fork 401
147 lines (120 loc) · 4.99 KB
/
build-and-upload.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
# https://docs.github.com/en/actions/guides/building-and-testing-python#publishing-to-package-registries
# When executed manually, this will upload a ".devNNN" build to testpypi;
# when executed upon a release, it will upload a regular build to pypi.
#
# For pypi, you need to have the PYPI_USERNAME and PYPI_PASSWORD secrets configured.
# For testpypi, you'll need TESTPYPI_USERNAME and TESTPYPI_PASSWORD.
name: build & upload
on:
release:
types: [ published ]
workflow_dispatch: # manual execution
jobs:
pick-devN:
name: create .devN build date coordinated across all matrix jobs
runs-on: ubuntu-latest
steps:
- run: TZ='America/New_York' date '+%Y%m%d%H%M' > devN.txt
- uses: actions/upload-artifact@v3
with:
name: devN
path: devN.txt
build-and-upload:
needs: pick-devN
strategy:
matrix:
python_version: ['3.8', '3.9', '3.10', '3.11']
plat: ['manylinux2014', 'manylinux_2_28', 'macos-latest', 'windows-latest']
include:
- plat: manylinux2014
os: ubuntu-latest
container: quay.io/pypa/manylinux2014_x86_64 # https://github.com/pypa/manylinux
- plat: manylinux_2_28
os: ubuntu-latest
container: quay.io/pypa/manylinux_2_28_x86_64 # https://github.com/pypa/manylinux
- plat: macos-latest
os: macos-latest
- plat: macos-latest
os: macos-latest
python_version: 3.11
upload_source: true # just need ONE of them to do it
- plat: windows-latest
os: windows-latest
exclude:
- plat: windows-latest
python_version: 3.11
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- name: get coordinated .devN
uses: actions/download-artifact@v3
with:
name: devN
- name: make dev build if not a release (non-Windows version)
if: github.event_name != 'release' && matrix.os != 'windows-latest'
run: echo "DEV_BUILD=$(cat devN.txt)" >> $GITHUB_ENV # for setup.py
- name: make dev build if not a release (Windows version)
if: github.event_name != 'release' && matrix.os == 'windows-latest'
run: ("DEV_BUILD=" + (get-content devN.txt)) >> $env:GITHUB_ENV # for setup.py
- uses: actions/checkout@v3
- name: Mark workspace safe for git
# needed for container and self-hosted runners; see https://github.com/actions/checkout/issues/766
if: matrix.container != ''
run: |
git config --global --add safe.directory "$GITHUB_WORKSPACE"
# setuptool's bdist uses 'git archive' to find files, and fails silently if it can't,
# leading to missing files in the archive. Run it separately to force a failure in that case.
(cd scalene; git archive --prefix scalene/ HEAD | tar -t > /dev/null)
- name: Set up python (script version)
if: matrix.container == ''
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python_version }}
- name: Set up python (container version)
if: matrix.container != ''
run: |
PYV=`echo "${{ matrix.python_version }}" | tr -d "."`; ls -d -1 /opt/python/cp$PYV*/bin | head -n 1 >> $GITHUB_PATH
cat $GITHUB_PATH
- name: Install dependencies
run: |
pip3 install --upgrade setuptools wheel twine build virtualenv
- name: Work around arm64 support on MacOS
# https://github.com/actions/virtual-environments/issues/2557
if: matrix.os == 'macos-latest'
run: sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/*
- name: Work around missing /tmp on Windows #"bash.exe: warning: could not find /tmp, please create!"
if: matrix.os == 'windows-latest'
run: |
#(get-command git.exe).Path
#(get-command sh.exe).Path
sh -c "mkdir /tmp || true"
- name: Build source dist
if: matrix.upload_source
run: make sdist
- name: Build binary dist
run: make bdist
- name: Check that all required platforms are included
if: matrix.os == 'macos-latest'
run: |
for P in x86_64 arm64 arm64e; do
for F in build/lib.*/scalene/*.so ; do
file $F | grep -q "\\b$P\\b"
if [ $? != 0 ]; then
echo "$P missing"
exit 1
fi
done
done
- name: Non-release (dev) upload
if: github.event_name != 'release'
env:
TWINE_REPOSITORY: testpypi
TWINE_USERNAME: ${{ secrets.TESTPYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TESTPYPI_PASSWORD }}
run: twine upload --verbose dist/*
- name: Release upload
if: github.event_name == 'release'
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload --verbose dist/*