forked from rlberry-py/rlberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
279 lines (231 loc) · 8.49 KB
/
azure-pipelines.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
trigger:
paths:
exclude:
- rlberry/_version.py
- docs
pr:
paths:
exclude:
- rlberry/_version.py
- docs
jobs:
- job: 'checkPrLabel'
continueOnError: false
pool:
vmImage: ubuntu-22.04
steps:
- bash: |
echo "Looking for label at https://api.github.com/repos/$BUILD_REPOSITORY_ID/issues/$SYSTEM_PULLREQUEST_PULLREQUESTNUMBER/labels"
if curl -s "https://api.github.com/repos/$BUILD_REPOSITORY_ID/issues/$SYSTEM_PULLREQUEST_PULLREQUESTNUMBER/labels" | grep '"name": "ready for review"'
then
echo "##vso[task.setvariable variable=prHasCILabel;isOutput=true]true"
echo "[INFO] ready for review label found!"
fi
displayName: Check for CI label build on PR
condition: eq(variables['Build.Reason'], 'PullRequest') # only run step if it is a PR
name: checkPrLabel
- job: 'linux'
dependsOn: checkPrLabel
# Condition: have ready for review label or on the main branch.
condition: or(in(variables['Build.SourceBranch'], 'refs/heads/main'), eq(dependencies.checkPrLabel.outputs['checkPrLabel.prHasCILabel'], true))
pool:
vmImage: ubuntu-latest
strategy:
matrix:
Python311:
python.version: '3.11'
variables:
NUMBA_DISABLE_JIT: "1"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
curl -sSL install.python-poetry.org | python3 -
sudo apt install libglu1-mesa
displayName: 'Install poetry'
- script: echo "##vso[task.setvariable variable=PATH]${PATH}:$HOME/.local/bin"
displayName: 'Add poetry to PATH'
- script: |
sleep 40
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') #run only on main
displayName: 'timer for version when push on main'
- script: |
curl -C - https://raw.githubusercontent.com/rlberry-py/rlberry/main/pyproject.toml > pyproject.toml
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') #run only on main
displayName: "update version when push on main"
- script: poetry install --all-extras --with dev --sync
displayName: 'Install dependencies'
- script: |
set -xe
poetry add pytest-azurepipelines pytest-cov pytest-xvfb
poetry run pytest --import-mode=importlib --cov=rlberry --cov-report xml rlberry
displayName: 'Test and coverage'
- script: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov
displayName: 'Upload to codecov.io'
- job: 'macOS'
dependsOn: checkPrLabel
condition: or(in(variables['Build.SourceBranch'], 'refs/heads/main'), eq(dependencies.checkPrLabel.outputs['checkPrLabel.prHasCILabel'], true))
pool:
vmImage: 'macOS-14'
strategy:
matrix:
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
curl -sSL install.python-poetry.org | python3 -
displayName: 'Install poetry'
- script: echo "##vso[task.setvariable variable=PATH]${PATH}:$HOME/.local/bin"
displayName: 'Add poetry to PATH'
- script: |
sleep 40
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') #run only on main
displayName: 'timer for version when push on main'
- script: |
curl -C - https://raw.githubusercontent.com/rlberry-py/rlberry/main/pyproject.toml > pyproject.toml
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') #run only on main
displayName: "update version when push on main"
- script: poetry install --all-extras --with dev --sync
displayName: 'Install dependencies'
- script: |
poetry add pytest-azurepipelines pytest-xvfb
poetry run pytest --ignore=rlberry/network
displayName: 'pytest'
- job: 'windows'
dependsOn: checkPrLabel
condition: or(in(variables['Build.SourceBranch'], 'refs/heads/main'), eq(dependencies.checkPrLabel.outputs['checkPrLabel.prHasCILabel'], true))
pool:
vmImage: 'windows-2022'
strategy:
matrix:
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
sleep 40
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') #run only on main
displayName: 'timer for version when push on main'
- script: |
curl -C - https://raw.githubusercontent.com/rlberry-py/rlberry/main/pyproject.toml > pyproject.toml
condition: eq(variables['Build.SourceBranch'], 'refs/heads/main') #run only on main
displayName: "update version when push on main"
- script: |
curl -sSL install.python-poetry.org | python3 -
set PATH=%PATH%;%USERPROFILE%\AppData\Roaming\pypoetry\venv\Scripts
poetry install --all-extras --with dev --sync
poetry add pytest-azurepipelines pytest-xvfb
poetry run pytest --ignore=rlberry/network
displayName: 'pytest'
- job: 'linux_non_editable'
dependsOn: checkPrLabel
# Condition: have ready for review label or on the main branch.
condition: or(in(variables['Build.SourceBranch'], 'refs/heads/main'), eq(dependencies.checkPrLabel.outputs['checkPrLabel.prHasCILabel'], true))
pool:
vmImage: ubuntu-latest
strategy:
matrix:
Python311:
python.version: '3.11'
variables:
NUMBA_DISABLE_JIT: "1"
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
sudo apt install libglu1-mesa
displayName: 'Install dependencies'
- script: |
set -xe
pip install .
displayName: 'Install rlberry'
- script: |
pip install pytest==7.0.1 pytest-azurepipelines pytest-xvfb
pytest rlberry/tests/test_imports.py
displayName: 'pytest imports'
- script: |
pip install git+https://github.com/rlberry-py/rlberry-scool.git
pip install git+https://github.com/rlberry-py/rlberry-research.git
displayName: 'Install rlberry-scool and rlberry-research'
#ignore les tests qui viennent des extras : torch, experimental, stablebaselines, optuna
- script: |
pytest rlberry/tests/test_agents_base.py rlberry/tests/test_envs.py
displayName: 'pytest agents and envs'
- job: 'macOS_non_editable'
dependsOn: checkPrLabel
condition: or(in(variables['Build.SourceBranch'], 'refs/heads/main'), eq(dependencies.checkPrLabel.outputs['checkPrLabel.prHasCILabel'], true))
pool:
vmImage: 'macOS-12'
strategy:
matrix:
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
displayName: 'Install dependencies'
- script: |
set -xe
pip install .
displayName: 'Install rlberry'
- script: |
pip install pytest==7.0.1 pytest-azurepipelines pytest-xvfb
pytest rlberry/tests/test_imports.py
displayName: 'pytest imports'
- script: |
pip install git+https://github.com/rlberry-py/rlberry-scool.git
pip install git+https://github.com/rlberry-py/rlberry-research.git
displayName: 'Install rlberry-scool and rlberry-research'
- script: |
pytest rlberry/tests/test_agents_base.py rlberry/tests/test_envs.py
displayName: 'pytest agents and envs'
- job: 'windows_non_editable'
dependsOn: checkPrLabel
condition: or(in(variables['Build.SourceBranch'], 'refs/heads/main'), eq(dependencies.checkPrLabel.outputs['checkPrLabel.prHasCILabel'], true))
pool:
vmImage: 'windows-2022'
strategy:
matrix:
Python311:
python.version: '3.11'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
displayName: 'Use Python $(python.version)'
- script: |
python -m pip install --upgrade pip
displayName: 'Install dependencies'
- script: |
pip install .
displayName: 'Install rlberry'
- script: |
pip install pytest==7.0.1 pytest-azurepipelines pytest-xvfb
pytest rlberry/tests/test_imports.py
displayName: 'pytest imports'
- script: |
pip install git+https://github.com/rlberry-py/rlberry-scool.git
pip install git+https://github.com/rlberry-py/rlberry-research.git
displayName: 'Install rlberry-scool and rlberry-research'
- script: |
pytest rlberry/tests/test_agents_base.py rlberry/tests/test_envs.py
displayName: 'pytest agents and envs'