forked from kubeflow/model-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
199 lines (193 loc) · 7.03 KB
/
python-tests.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
# name: Python workflows
# on:
# push:
# branches:
# - "main"
# workflow_dispatch:
# pull_request:
# paths-ignore:
# - "LICENSE*"
# - "**.gitignore"
# - "**.md"
# - "**.txt"
# - ".github/ISSUE_TEMPLATE/**"
# - ".github/dependabot.yml"
# - "docs/**"
# jobs:
# lint:
# name: ${{ matrix.session }}
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# python: ["3.12"]
# session: [lint, mypy]
# env:
# NOXSESSION: ${{ matrix.session }}
# FORCE_COLOR: "1"
# steps:
# - name: Check out the repository
# uses: actions/checkout@v4
# - name: Set up Python ${{ matrix.python }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python }}
# - name: Upgrade pip
# run: |
# pip install --constraint=.github/workflows/constraints.txt pip
# pip --version
# - name: Upgrade pip in virtual environments
# shell: python
# run: |
# import os
# import pip
# with open(os.environ["GITHUB_ENV"], mode="a") as io:
# print(f"VIRTUALENV_PIP={pip.__version__}", file=io)
# - name: Install Poetry
# # use absolute path as recommended with: https://github.com/pypa/pipx/issues/1331
# run: |
# pipx install --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt poetry
# poetry --version
# - name: Install Nox
# run: |
# pipx install --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt nox
# pipx inject --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt nox nox-poetry
# nox --version
# - name: Nox lint
# working-directory: clients/python
# run: |
# if [[ ${{ matrix.session }} == "mypy" ]]; then
# nox --python=${{ matrix.python }} ||\
# echo "::error title='mypy failure'::Check the logs for more details"
# else
# nox --python=${{ matrix.python }}
# fi
# test:
# name: Test against Py ${{ matrix.python }}
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# python: ["3.12", "3.11", "3.10", "3.9"]
# env:
# FORCE_COLOR: "1"
# IMG_ORG: kubeflow
# IMG_REPO: model-registry
# steps:
# - name: Check out the repository
# uses: actions/checkout@v4
# - name: Set up Python ${{ matrix.python }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python }}
# - name: Upgrade pip
# run: |
# pip install --constraint=.github/workflows/constraints.txt pip
# pip --version
# - name: Upgrade pip in virtual environments
# shell: python
# run: |
# import os
# import pip
# with open(os.environ["GITHUB_ENV"], mode="a") as io:
# print(f"VIRTUALENV_PIP={pip.__version__}", file=io)
# - name: Install Poetry
# # use absolute path as recommended with: https://github.com/pypa/pipx/issues/1331
# run: |
# pipx install --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt poetry
# poetry --version
# - name: Install Nox
# run: |
# pipx install --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt nox
# pipx inject --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt nox nox-poetry
# nox --version
# - name: Nox test
# working-directory: clients/python
# run: |
# nox --python=${{ matrix.python }} --session=tests
# - name: Generate Tag
# shell: bash
# id: tags
# run: |
# commit_sha=${{ github.event.after }}
# tag=main-${commit_sha:0:7}
# echo "tag=${tag}" >> $GITHUB_OUTPUT
# - name: Build Image
# shell: bash
# env:
# IMG_VERSION: ${{ steps.tags.outputs.tag }}
# run: make image/build
# - name: Start Kind Cluster
# uses: helm/[email protected]
# with:
# node_image: "kindest/node:v1.27.11"
# cluster_name: chart-testing-py-${{ matrix.python }}
# - name: Load Local Registry Test Image
# env:
# IMG: "${{ env.IMG_ORG }}/${{ env.IMG_REPO }}:${{ steps.tags.outputs.tag }}"
# run: |
# kind load docker-image -n chart-testing-py-${{ matrix.python }} ${IMG}
# - name: Deploy Model Registry using manifests
# env:
# IMG: "${{ env.IMG_ORG }}/${{ env.IMG_REPO }}:${{ steps.tags.outputs.tag }}"
# run: ./scripts/deploy_on_kind.sh
# - name: Nox test end-to-end
# working-directory: clients/python
# run: |
# kubectl port-forward -n kubeflow service/model-registry-service 8080:8080 &
# sleep 2
# nox --python=${{ matrix.python }} --session=e2e -- --cov-report=xml
# docs-build:
# name: ${{ matrix.session }}
# runs-on: ubuntu-latest
# strategy:
# fail-fast: false
# matrix:
# python: ["3.12"]
# session: [docs-build]
# env:
# NOXSESSION: ${{ matrix.session }}
# FORCE_COLOR: "1"
# steps:
# - name: Check out the repository
# uses: actions/checkout@v4
# - name: Set up Python ${{ matrix.python }}
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python }}
# - name: Upgrade pip
# run: |
# pip install --constraint=.github/workflows/constraints.txt pip
# pip --version
# - name: Upgrade pip in virtual environments
# shell: python
# run: |
# import os
# import pip
# with open(os.environ["GITHUB_ENV"], mode="a") as io:
# print(f"VIRTUALENV_PIP={pip.__version__}", file=io)
# - name: Install Poetry
# # use absolute path as recommended with: https://github.com/pypa/pipx/issues/1331
# run: |
# pipx install --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt poetry
# poetry --version
# - name: Install Nox
# run: |
# pipx install --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt nox
# pipx inject --pip-args=--constraint=${{ github.workspace }}/.github/workflows/constraints.txt nox nox-poetry
# nox --version
# - name: Run Nox
# working-directory: clients/python
# run: |
# nox --python=${{ matrix.python }}
# poetry build
# - name: Upload dist
# uses: actions/upload-artifact@v4
# with:
# name: py-dist
# path: clients/python/dist
# - name: Upload documentation
# uses: actions/upload-artifact@v4
# with:
# name: py-docs
# path: clients/python/docs/_build