-
Notifications
You must be signed in to change notification settings - Fork 0
165 lines (158 loc) · 5.61 KB
/
python-ci.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
name: CI
concurrency: python-ci
on:
push:
branches: [develop]
paths:
- "src/**"
- "tests/**"
- setup.cfg
- setup.py
- tox.ini
- "requirements/*.txt"
- "docs/**"
workflow_run:
workflows: ["Update Requirements"]
types: [completed]
workflow_dispatch:
repository_dispatch:
types:
- common-published
jobs:
tests:
name: Build/test on ${{ matrix.name }}
runs-on: ${{ matrix.os }}
concurrency: ci
strategy:
fail-fast: false
matrix:
include:
- name: Linux
os: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get language version
id: get_lang_version
run: |
v=$(cat .python-version)
echo "lang_version=$v" >> $GITHUB_OUTPUT
t=$(cat .tox-env)
echo "tox_env=$t" >> $GITHUB_OUTPUT
- uses: actions/setup-python@v5
with:
python-version: ${{ steps.get_lang_version.outputs.lang_version }}
- name: update-pip
run: |
pip install -U wheel
pip install -U setuptools
python -m pip install -U pip
- name: get-pip-cache-dir
id: pip-cache
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: cache-pip
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip|${{ runner.os }}|${{ steps.get_lang_version.outputs.lang_version }}|${{ hashFiles('setup.py') }}|${{ hashFiles('requirements/*.txt') }}
- name: install-utils
run: pip install tox
- name: tests
run: |
tox -e ${{ steps.get_lang_version.outputs.tox_env }}
docs:
needs: [tests]
runs-on: ubuntu-latest
concurrency: docs
steps:
- uses: actions/checkout@v4
- name: Get language version
id: get_lang_version
run: |
v=$(cat .python-version)
echo "lang_version=$v" >> $GITHUB_OUTPUT
t=$(cat .tox-env)
echo "tox_env=$t" >> $GITHUB_OUTPUT
- uses: actions/setup-python@v5
with:
python-version: ${{ steps.get_lang_version.outputs.lang_version }}
- name: install-deps
run: pip install -r requirements/docs.txt
- name: make-docs
run: cd docs && make html
- name: publish-docs
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build/html
destination_dir: python
publish:
needs: [tests]
runs-on: ubuntu-latest
concurrency: publish
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
# - name: Build a binary wheel and a source tarball
# run: |
# python3 -m pip install build --user
# python3 -m build
# - name: Store the distribution packages
# uses: actions/upload-artifact@v4
# with:
# name: python-package-distributions
# path: dist/
# - name: publish
# uses: pypa/gh-action-pypi-publish@release/v1
- name: publish
uses: relekang/[email protected]
with:
additional_options: "--patch"
github_token: ${{ secrets.GITHUB_TOKEN }}
repository_username: __token__
repository_password: ${{ secrets.PYPI_TOKEN }}
notify:
needs: [publish]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- repo: api-core
- repo: catalog-api
- repo: catalog-data
- repo: catalog-data-processor
- repo: catalog-objects
- repo: catalog-web
- repo: client
- repo: data-api
- repo: data-objects
- repo: db
- repo: initiative-api
- repo: initiative-data
- repo: initiative-objects
- repo: initiative-web
- repo: kv-api
- repo: kv-data
- repo: kv-expression-processor
- repo: kv-key-processor
- repo: kv-objects
- repo: kv-value-calculator
- repo: kv-web
- repo: library-api
- repo: library-data
- repo: library-objects
- repo: library-web
- repo: main-web
- repo: model-core
- repo: shared-web
- repo: web-core
steps:
- uses: juztcode/repo-ditpatch-action@v1
continue-on-error: true
with:
event-type: model-core-published
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: sweetrpg/${{ matrix.repo }}