generated from allenai/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
287 lines (240 loc) · 7.94 KB
/
main.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
name: Main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- 'v*.*.*'
env:
CACHE_PREFIX: v0 # Change this to invalidate existing cache.
DEFAULT_PYTHON: 3.8
BEAKER_WORKSPACE: ai2/petew-testing
jobs:
compatibility:
name: Compatibility
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Setup Python environment
uses: ./.github/actions/setup-venv
with:
python-version: ${{ env.DEFAULT_PYTHON }}
cache-prefix: ${{ env.CACHE_PREFIX }}
- name: Setup Beaker
uses: allenai/setup-beaker@v2
with:
token: ${{ secrets.BEAKER_TOKEN }}
workspace: ${{ env.BEAKER_WORKSPACE }}
- name: Check config compatibility
shell: bash
run: |
. .venv/bin/activate
python -c 'from beaker import Beaker; print(Beaker.from_env().account.name)'
- name: Clean up
if: always()
shell: bash
run: |
. .venv/bin/activate
pip uninstall -y beaker-py
pydantic_v1:
name: Pydantic V1
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
- name: Setup Python environment
uses: ./.github/actions/setup-venv
with:
python-version: ${{ env.DEFAULT_PYTHON }}
cache-prefix: pydantic-v1-${{ env.CACHE_PREFIX }}
packages: pydantic<2.0
- name: Check Pydantic V1 compatibility
shell: bash
run: |
. .venv/bin/activate
pytest -v tests/data_model_test.py
- name: Clean up
if: always()
shell: bash
run: |
. .venv/bin/activate
pip uninstall -y beaker-py
checks:
name: ${{ matrix.os }} - python ${{ matrix.python }} - ${{ matrix.task.name }}
runs-on: ${{ matrix.os }}
timeout-minutes: 15
env:
BEAKER_TOKEN: ${{ secrets.BEAKER_TOKEN }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python: [3.8]
task:
- name: Lint
run: |
ruff check .
- name: Type check
run: |
mypy --check-untyped-defs .
- name: Unit tests
run: |
pytest -v --color=yes --durations=10 tests/
- name: Doc tests
run: |
pytest -v --color=yes --durations=10 --doctest-modules -k 'beaker/__init__.py or beaker.client' beaker/
- name: Doc tests (B)
run: |
pytest -v --color=yes --durations=10 --doctest-modules -k 'not beaker/__init__.py and not beaker.client' beaker/
- name: Images
run: |
# Clean up local cache.
docker system prune --all --force
# Build test image for uploading.
cd test_fixtures/docker \
&& docker build --build-arg "COMMIT_SHA=$COMMIT_SHA" -t beaker-py-test . \
&& cd -
pytest -rP -v --color=yes integration_tests/images_test.py
- name: Jobs
run: |
pytest -rP -v --color=yes integration_tests/jobs_test.py
- name: Experiments
run: |
pytest -rP -v --color=yes integration_tests/experiments_test.py
- name: Datasets
run: |
pytest -rP -v --color=yes integration_tests/datasets_test.py
- name: Sweep example
run: |
cd examples/sweep
# NOTE: anytime you change something here, make sure the run instructions
# in 'examples/sweep/README.md' are still up-to-date.
docker build -t sweep .
python run.py "sweep" "ai2/beaker-py-sweep-example"
- name: Build
run: |
python -m build
- name: Style
run: |
isort --check .
black --check .
- name: Docs
run: |
cd docs && make html
steps:
- uses: actions/checkout@v3
- name: Determine current commit SHA (pull request)
if: github.event_name == 'pull_request'
run: |
echo "COMMIT_SHA=${{ github.event.pull_request.head.sha }}" >> $GITHUB_ENV
- name: Determine current commit SHA (push)
if: github.event_name != 'pull_request'
run: |
echo "COMMIT_SHA=$GITHUB_SHA" >> $GITHUB_ENV
- name: Setup Python environment
uses: ./.github/actions/setup-venv
with:
python-version: ${{ matrix.python }}
cache-prefix: ${{ env.CACHE_PREFIX }}
- name: ${{ matrix.task.name }}
shell: bash
run: |
set -euo pipefail
. .venv/bin/activate
${{ matrix.task.run }}
- name: Upload package distribution files
if: matrix.task.name == 'Build'
uses: actions/upload-artifact@v3
with:
name: package
path: dist
- name: Clean up
if: always()
shell: bash
run: |
. .venv/bin/activate
pip uninstall -y beaker-py
docker:
name: Docker
runs-on: ubuntu-latest
env:
image: ghcr.io/allenai/beaker-py
steps:
- uses: actions/checkout@v3
- name: Log in to ghcr.io
run: |
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USER }} --password-stdin
- name: Build image
run: |
docker build -t "${image}" .
- name: Test image
run: |
docker run \
--rm \
--entrypoint python \
-e BEAKER_TOKEN=${{ secrets.BEAKER_TOKEN }} \
"${image}" \
-c "from beaker import Beaker; beaker = Beaker.from_env(); print(beaker.account.whoami())"
- name: Publish image to container registry
if: startsWith(github.ref, 'refs/tags/')
shell: bash
run: |
TAG_MAJOR_MINOR_PATCH=${GITHUB_REF#refs/tags/}
TAG_MAJOR_MINOR=${TAG_MAJOR_MINOR_PATCH%.*}
TAG_MAJOR=${TAG_MAJOR_MINOR_PATCH%.*.*}
TAG_LATEST="latest"
for TAG in $TAG_MAJOR_MINOR_PATCH $TAG_MAJOR_MINOR $TAG_MAJOR $TAG_LATEST
do
echo "Pushing ${image}:${TAG}"
docker tag "${image}" "${image}:${TAG}"
docker push "${image}:${TAG}"
done
release:
name: Release
runs-on: ubuntu-latest
needs: [checks, docker]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v1 # needs v1 for now
- name: Log in to ghcr.io
run: |
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ secrets.GHCR_USER }} --password-stdin
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ env.DEFAULT_PYTHON }}
- name: Install requirements
run: |
pip install --upgrade pip setuptools wheel build
pip install -e .[dev]
- name: Prepare environment
run: |
echo "RELEASE_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
- name: Download package distribution files
uses: actions/download-artifact@v3
with:
name: package
path: dist
- name: Generate release notes
run: |
python scripts/release_notes.py > ${{ github.workspace }}-RELEASE_NOTES.md
- name: Publish package to PyPI
run: |
twine upload -u __token__ -p ${{ secrets.PYPI_PASSWORD }} dist/*
- name: Publish GitHub release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body_path: ${{ github.workspace }}-RELEASE_NOTES.md
prerelease: ${{ contains(env.TAG, 'rc') }}
files: |
dist/*