-
Notifications
You must be signed in to change notification settings - Fork 6
296 lines (277 loc) · 10.3 KB
/
push.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
288
289
290
291
292
293
294
295
296
name: Push
on:
push:
branches:
- master
pull_request:
branches:
- master
env:
PROJECT_NAME: plangym
PROJECT_DIR: src/plangym
VERSION_FILE: src/plangym/version.py
DEFAULT_BRANCH: master
BOT_NAME: fragile-bot
BOT_EMAIL: [email protected]
DOCKER_ORG: fragiletech
LOCAL_CACHE: |
~/.local/bin
~/.local/lib/python3.*/site-packages
/opt/homebrew
jobs:
style-check:
name: Style check
if: "!contains(github.event.head_commit.message, 'Bump version')"
runs-on: ubuntu-latest
steps:
- name: actions/checkout
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Setup Rye
id: setup-rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
cache-prefix: ubuntu-20.04-rye-check-${{ hashFiles('pyproject.toml') }}
- name: Run style check and linter
run: |
set -x
rye fmt --check
rye lint
pytest:
name: Run Pytest
if: "!contains(github.event.head_commit.message, 'Bump version')"
strategy:
matrix:
python-version: [ '3.10' ]
os: [ 'ubuntu-latest', 'macos-latest' ]
runs-on: ${{ matrix.os }}
steps:
- name: actions/checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup Rye
id: setup-rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
cache-prefix: ${{ matrix.os }}-latest-rye-test-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
- name: actions/cache
uses: actions/cache@v3
with:
path: ${{ env.LOCAL_CACHE }}
key: ${{ matrix.os }}-latest-system-test-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
restore-keys: ${{ matrix.os }}-latest-system-test-${{ matrix.python-version }}
- name: Install Ubuntu test and package dependencies
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
set -x
sudo apt-get install -y xvfb libglu1-mesa
rye pin --relaxed cpython@${{ matrix.python-version }}
rye sync --all-features
ROM_PASSWORD=${{ secrets.ROM_PASSWORD }} rye run import-roms
- name: Install MacOS test and package dependencies
if: ${{ matrix.os == 'macos-latest' }}
run: |
set -x
brew install --cask xquartz
brew install swig
# When building retro from source we may need the deprecated version of lua 5.1.
# brew install libzip qt5 capnp
# Retro does not build in MacOS due to ancient requirements, so we will be installing retro==0.9.1 from pypi
# because it contains pre-build wheels for MacOS.
# chmod +x install-lua-macos.sh
# sudo ./install-lua-macos.sh
# echo 'export PATH="/opt/homebrew/opt/qt@5/bin:$PATH"' >> ~/.zshrc
# export SDKROOT=$(xcrun --sdk macosx --show-sdk-path)
# https://docs.github.com/en/actions/learn-github-actions/workflow-commands-for-github-actions#adding-a-system-path
echo "/opt/X11/bin" >> $GITHUB_PATH
# https://github.com/ponty/PyVirtualDisplay/issues/42
if [ ! -d /tmp/.X11-unix ]; then
mkdir /tmp/.X11-unix
fi
sudo chmod 1777 /tmp/.X11-unix
sudo chown root /tmp/.X11-unix
rye pin --relaxed cpython@${{ matrix.python-version }}
rye sync --all-features
# Fix a bug in retro.data where it tries to load an inexistent version file
# sed -i '' 's/VERSION\.txt/VERSION/g' /Users/runner/work/plangym/plangym/.venv/lib/python3.10/site-packages/retro/__init__.py
if [ ! -d /Users/runner/work/plangym/plangym/.venv/lib/python3.10/site-packages/retro/VERSION ]; then
echo "0.9.1" > /Users/runner/work/plangym/plangym/.venv/lib/python3.10/site-packages/retro/VERSION.txt
fi
ROM_PASSWORD=${{ secrets.ROM_PASSWORD }} rye run import-roms
- name: Run Pytest on MacOS
if: ${{ matrix.os == 'macos-latest' }}
run: |
set -x
# TODO: Figure out how to emulate a display in headless machines, and figure out why the commented files fail
# SKIP_RENDER=True rye run pytest tests/test_registry.py tests/videogames/test_retro.py
SKIP_RENDER=True rye run pytest tests/control tests/videogames/test_atari.py tests/videogames/test_nes.py tests/test_core.py
- name: Run code coverage on Ubuntu
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
set -x
xvfb-run -s "-screen 0 1400x900x24" rye run codecov
- name: Upload coverage report
# if: ${{ matrix.python-version == '3.10' && matrix.os == 'ubuntu-latest' }}
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false # optional (default = false)
files: ./coverage.xml,./coverage_parallel.xml
flags: unittests # optional
name: codecov-umbrella # optional
token: ${{ secrets.CODECOV_TOKEN }} # required
verbose: true # optional (default = false)
# test-docker:
# name: Test Docker container
# runs-on: ubuntu-20.04
# if: "!contains(github.event.head_commit.message, 'Bump version')"
# steps:
# - uses: actions/checkout@v2
# - name: Build container
# run: |
# set -x
# ROM_PASSWORD=${{ secrets.ROM_PASSWORD }} make docker-build
# - name: Run tests
# run: |
# set -x
# make docker-test
build-test-package:
name: Build and test the package
needs: style-check
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'Bump version')"
steps:
- name: actions/checkout
uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: '3.10'
- name: Setup Rye
id: setup-rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
cache-prefix: ubuntu-latest-rye-build-3.10-${{ hashFiles('pyproject.toml') }}
- name: actions/cache
uses: actions/cache@v3
with:
path: ${{ env.LOCAL_CACHE }}
key: ubuntu-latest-system-build-3.10-${{ hashFiles('pyproject.toml') }}
restore-keys: ubuntu-latest-system-test
- name: Install build dependencies
run: |
set -x
pip install uv
rye install bump2version
rye install twine
- name: Create unique version for test.pypi
run: |
set -x
current_version=$(grep __version__ $VERSION_FILE | cut -d\" -f2)
ts=$(date +%s)
new_version="$current_version$ts"
bumpversion --current-version $current_version --new-version $new_version patch $VERSION_FILE
- name: Build package
run: |
set -x
rye build --clean
twine check dist/*
- name: Publish package to TestPyPI
env:
TEST_PYPI_PASS: ${{ secrets.TEST_PYPI_PASS }}
if: "'$TEST_PYPI_PASS' != ''"
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_PASS }}
repository-url: https://test.pypi.org/legacy/
skip-existing: true
- name: Install dependencies
env:
UV_SYSTEM_PYTHON: 1
run: |
set -x
sudo apt-get install -y xvfb libglu1-mesa
rye lock --all-features
uv pip install -r requirements.lock
uv pip install dist/*.whl
# ROM_PASSWORD=${{ secrets.ROM_PASSWORD }} python -m plangym.scripts.import_retro_roms
# - name: Test package
# env:
# UV_SYSTEM_PYTHON: 1
# run: |
# set -x
# rm -rf $PROJECT_DIR
# find . -name "*.pyc" -delete
# make test
bump-version:
name: Bump package version
env:
BOT_AUTH_TOKEN: ${{ secrets.BOT_AUTH_TOKEN }}
if: "!contains(github.event.head_commit.message, 'Bump version') && github.ref == 'refs/heads/master' && '$BOT_AUTH_TOKEN' != ''"
runs-on: ubuntu-latest
needs:
- pytest
- build-test-package
# - test-docker
steps:
- name: actions/checkout
uses: actions/checkout@v3
with:
persist-credentials: false
fetch-depth: 100
- name: current_version
run: |
set -x
echo "current_version=$(grep __version__ $VERSION_FILE | cut -d\" -f2)" >> $GITHUB_ENV
echo "version_file=$VERSION_FILE" >> $GITHUB_ENV
echo 'bot_name="${BOT_NAME}"' >> $GITHUB_ENV
echo 'bot_email="${BOT_EMAIL}"' >> $GITHUB_ENV
- name: FragileTech/bump-version
uses: FragileTech/bump-version@main
with:
current_version: "${{ env.current_version }}"
files: "${{ env.version_file }}"
commit_name: "${{ env.bot_name }}"
commit_email: "${{ env.bot_email }}"
login: "${{ env.bot_name }}"
token: "${{ secrets.BOT_AUTH_TOKEN }}"
# release-package:
# name: Release PyPI package
# env:
# PYPI_PASS: ${{ secrets.PYPI_PASS }}
# if: "contains(github.event.head_commit.message, 'Bump version') && github.ref == 'refs/heads/master' && '$PYPI_PASS' != ''"
# runs-on: ubuntu-20.04
# steps:
# - name: actions/checkout
# uses: actions/checkout@v3
# - name: Set up Python 3.8
# uses: actions/setup-python@v3
# with:
# python-version: 3.8
# - name: Install dependencies
# run: |
# set -x
# python -m pip install -U pip
# python -m pip install -U setuptools twine wheel
#
# - name: Build package
# run: |
# set -x
# python setup.py --version
# python setup.py bdist_wheel sdist --format=gztar
# twine check dist/*
#
# - name: Publish package to PyPI
# uses: pypa/gh-action-pypi-publish@master
# with:
# user: __token__
# password: ${{ secrets.PYPI_PASS }}