Skip to content

Commit 9fdd287

Browse files
author
Azure Pipelines
committed
Merge remote-tracking branch 'origin/main' into publication
2 parents 543a8d8 + 47147fa commit 9fdd287

File tree

35 files changed

+271
-141
lines changed

35 files changed

+271
-141
lines changed

.actions/assistant.py

+54-14
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def get_running_cuda_version() -> str:
113113
return ""
114114

115115

116-
def get_running_torch_version():
116+
def get_running_torch_version() -> str:
117117
"""Extract the version of actual PyTorch for this runtime."""
118118
try:
119119
import torch
@@ -154,7 +154,7 @@ class AssistantCLI:
154154
"lightning_examples": "Lightning-Examples",
155155
"flash_tutorials": "Kaggle",
156156
}
157-
_BASH_SCRIPT_BASE = ("#!/bin/bash", "set -e", "")
157+
_BASH_SCRIPT_BASE = ("#!/bin/bash", "set -ex", "")
158158
_EXT_ARCHIVE_ZIP = (".zip",)
159159
_EXT_ARCHIVE_TAR = (".tar", ".gz")
160160
_EXT_ARCHIVE = _EXT_ARCHIVE_ZIP + _EXT_ARCHIVE_TAR
@@ -167,6 +167,7 @@ def _find_meta(folder: str) -> str:
167167
168168
Args:
169169
folder: path to the folder with python script, meta and artefacts
170+
170171
"""
171172
files = glob.glob(os.path.join(folder, AssistantCLI._META_FILE_REGEX), flags=glob.BRACE)
172173
if len(files) == 1:
@@ -180,6 +181,7 @@ def _load_meta(folder: str, strict: bool = False) -> Optional[dict]:
180181
Args:
181182
folder: path to the folder with python script, meta and artefacts
182183
strict: raise error if meta is missing required fields
184+
183185
"""
184186
fpath = AssistantCLI._find_meta(folder)
185187
assert fpath, f"Missing meta file in folder: {folder}"
@@ -197,6 +199,7 @@ def _valid_conf_folder(folder: str) -> Tuple[str, str]:
197199
198200
Args:
199201
folder: path to the folder with python script, meta and artefacts
202+
200203
"""
201204
meta_files = [os.path.join(folder, f".meta.{ext}") for ext in ("yml", "yaml")]
202205
meta_files = [pf for pf in meta_files if os.path.isfile(pf)]
@@ -217,6 +220,7 @@ def _valid_folder(folder: str, ext: str) -> Tuple[str, str, str]:
217220
Args:
218221
folder: path to the folder with python script, meta and artefacts
219222
ext: extension determining the stage - ".py" for python script nad ".ipynb" for notebook
223+
220224
"""
221225
files = glob.glob(os.path.join(folder, f"*{ext}"))
222226
if len(files) != 1:
@@ -231,6 +235,7 @@ def _valid_accelerator(folder: str) -> bool:
231235
232236
Args:
233237
folder: path to the folder with python script, meta and artefacts
238+
234239
"""
235240
meta = AssistantCLI._load_meta(folder)
236241
meta_accels = [acc.lower() for acc in meta.get("accelerator", AssistantCLI._META_ACCEL_DEFAULT)]
@@ -243,6 +248,7 @@ def _parse_requirements(folder: str) -> Tuple[str, str]:
243248
244249
Args:
245250
folder: path to the folder with python script, meta and artefacts
251+
246252
"""
247253
meta = AssistantCLI._load_meta(folder)
248254
reqs = meta.get("requirements", [])
@@ -268,6 +274,7 @@ def _bash_download_data(folder: str) -> List[str]:
268274
269275
Args:
270276
folder: path to the folder with python script, meta and artefacts
277+
271278
"""
272279
meta = AssistantCLI._load_meta(folder)
273280
datasets = meta.get("datasets", {})
@@ -299,6 +306,7 @@ def bash_render(folder: str, output_file: str = PATH_SCRIPT_RENDER) -> Optional[
299306
300307
Returns:
301308
string with nash script content
309+
302310
"""
303311
cmd = list(AssistantCLI._BASH_SCRIPT_BASE) + [f"# Rendering: {folder}"]
304312
if not AssistantCLI.DRY_RUN:
@@ -314,7 +322,13 @@ def bash_render(folder: str, output_file: str = PATH_SCRIPT_RENDER) -> Optional[
314322
# dry run does not execute the notebooks just takes them as they are
315323
cmd.append(f"cp {ipynb_file} {pub_ipynb}")
316324
# copy and add meta config
317-
cmd += [f"cp {meta_file} {pub_meta}", f"cat {pub_meta}", f"git add {pub_meta}"]
325+
cmd += [
326+
f"cp {meta_file} {pub_meta}",
327+
'echo "#====== START OF YAML FILE ======#"',
328+
f"cat {pub_meta}",
329+
'echo "#======= END OF YAML FILE =======#"',
330+
f"git add {pub_meta}",
331+
]
318332
else:
319333
pip_req, pip_args = AssistantCLI._parse_requirements(folder)
320334
cmd += [f"pip install {pip_req} --quiet {pip_args}", "pip list"]
@@ -327,7 +341,13 @@ def bash_render(folder: str, output_file: str = PATH_SCRIPT_RENDER) -> Optional[
327341
# Export the actual packages used in runtime
328342
cmd.append(f"meta_file=$(python .actions/assistant.py update-env-details {folder})")
329343
# copy and add to version the enriched meta config
330-
cmd += ["echo $meta_file", "cat $meta_file", "git add $meta_file"]
344+
cmd += [
345+
"echo $meta_file",
346+
'echo "#====== START OF YAML FILE ======#"',
347+
"cat $meta_file",
348+
'echo "#======= END OF YAML FILE =======#"',
349+
"git add $meta_file",
350+
]
331351
# if thumb image is linked to the notebook, copy and version it too
332352
if thumb_file:
333353
cmd += [f"cp {thumb_file} {pub_thumb}", f"git add {pub_thumb}"]
@@ -339,7 +359,7 @@ def bash_render(folder: str, output_file: str = PATH_SCRIPT_RENDER) -> Optional[
339359
fopen.write(os.linesep.join(cmd))
340360

341361
@staticmethod
342-
def bash_test(folder: str, output_file: str = PATH_SCRIPT_TEST) -> Optional[str]:
362+
def bash_test(folder: str, output_file: str = PATH_SCRIPT_TEST, virtualenv: bool = False) -> Optional[str]:
343363
"""Prepare bash script for running tests of a particular notebook.
344364
345365
Args:
@@ -348,18 +368,20 @@ def bash_test(folder: str, output_file: str = PATH_SCRIPT_TEST) -> Optional[str]
348368
349369
Returns:
350370
string with nash script content
371+
351372
"""
352373
cmd = list(AssistantCLI._BASH_SCRIPT_BASE) + [f"# Testing: {folder}"]
353374
cmd += AssistantCLI._bash_download_data(folder)
354375
ipynb_file, meta_file, _ = AssistantCLI._valid_folder(folder, ext=".ipynb")
355376

356377
# prepare isolated environment with inheriting the global packages
357378
path_venv = os.path.join(folder, "venv")
358-
cmd += [
359-
f"python -m virtualenv --system-site-packages {path_venv}",
360-
f"source {os.path.join(path_venv, 'bin', 'activate')}",
361-
"pip --version",
362-
]
379+
if virtualenv:
380+
cmd += [
381+
f"python -m virtualenv --system-site-packages {path_venv}",
382+
f"source {os.path.join(path_venv, 'bin', 'activate')}",
383+
"pip --version",
384+
]
363385

364386
cmd.append(f"# available: {AssistantCLI.DEVICE_ACCELERATOR}")
365387
if AssistantCLI._valid_accelerator(folder):
@@ -369,21 +391,30 @@ def bash_test(folder: str, output_file: str = PATH_SCRIPT_TEST) -> Optional[str]
369391
# Export the actual packages used in runtime
370392
cmd.append(f"meta_file=$(python .actions/assistant.py update-env-details {folder} --base_path .)")
371393
# show created meta config
372-
cmd += ["echo $meta_file", "cat $meta_file"]
373-
cmd.append(f"python -m pytest {ipynb_file} -v --nbval --nbval-cell-timeout=300")
394+
cmd += [
395+
"echo $meta_file",
396+
'echo "#====== START OF YAML FILE ======#"',
397+
"cat $meta_file",
398+
'echo "#======= END OF YAML FILE =======#"',
399+
]
400+
# use standard jupyter's executable via CMD
401+
cmd.append(f"jupyter execute {ipynb_file} --inplace")
374402
else:
375403
pub_ipynb = os.path.join(DIR_NOTEBOOKS, f"{folder}.ipynb")
376404
pub_meta = pub_ipynb.replace(".ipynb", ".yaml")
377405
# copy and add meta config
378406
cmd += [
379407
f"mkdir -p {os.path.dirname(pub_meta)}",
380408
f"cp {meta_file} {pub_meta}",
409+
'echo "#====== START OF YAML FILE ======#"',
381410
f"cat {pub_meta}",
411+
'echo "#======= END OF YAML FILE =======#"',
382412
f"git add {pub_meta}",
383413
]
384414
warn("Invalid notebook's accelerator for this device. So no tests will be run!!!", RuntimeWarning)
385415
# deactivate and clean local environment
386-
cmd += ["deactivate", f"rm -rf {os.path.join(folder, 'venv')}"]
416+
if virtualenv:
417+
cmd += ["deactivate", f"rm -rf {os.path.join(folder, 'venv')}"]
387418
if not output_file:
388419
return os.linesep.join(cmd)
389420
with open(output_file, "w") as fopen:
@@ -395,6 +426,7 @@ def convert_ipynb(folder: str) -> None:
395426
396427
Args:
397428
folder: folder with python script
429+
398430
"""
399431
fpath, _, _ = AssistantCLI._valid_folder(folder, ext=".py")
400432
with open(fpath) as fopen:
@@ -426,6 +458,7 @@ def _replace_images(lines: list, local_dir: str) -> list:
426458
Args:
427459
lines: string lines from python script
428460
local_dir: relative path to the folder with script
461+
429462
"""
430463
md = os.linesep.join([ln.rstrip() for ln in lines])
431464
p_imgs = []
@@ -488,6 +521,7 @@ def group_folders(
488521
Example:
489522
$ python assistant.py group-folders ../target-diff.txt \
490523
--fpath_actual_dirs "['../dirs-main.txt', '../dirs-publication.txt']"
524+
491525
"""
492526
with open(fpath_gitdiff) as fopen:
493527
changed = [ln.strip() for ln in fopen.readlines()]
@@ -534,6 +568,7 @@ def generate_matrix(fpath_change_folders: str, json_indent: Optional[int] = None
534568
Args:
535569
fpath_change_folders: output of previous ``group_folders``
536570
json_indent: makes the json more readable, recommendation is 4
571+
537572
"""
538573
with open(fpath_change_folders) as fopen:
539574
folders = [ln.strip() for ln in fopen.readlines()]
@@ -623,6 +658,7 @@ def copy_notebooks(
623658
path_docs_images: destination path to the images' location relative to ``docs_root``
624659
patterns: patterns to use when glob-ing notebooks
625660
ignore: ignore some specific notebooks even when the given string is in path
661+
626662
"""
627663
all_ipynb = []
628664
for pattern in patterns:
@@ -693,7 +729,11 @@ def update_env_details(folder: str, base_path: str = DIR_NOTEBOOKS) -> str:
693729
694730
Args:
695731
folder: path to the folder
696-
base_path:
732+
base_path: base path with notebooks
733+
734+
Returns:
735+
path the updated YAML file
736+
697737
"""
698738
meta = AssistantCLI._load_meta(folder)
699739
# default is COU runtime

.azure/ipynb-publish.yml

+12-4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
printf "commit hash:\n $(COMMIT_HASH)\n"
2525
printf "commit message:\n $(COMMIT_MSG)\n"
2626
displayName: "Set Git user"
27+
timeoutInMinutes: "5"
2728
- bash: |
2829
set -e
2930
git fetch --all
@@ -59,14 +60,18 @@ jobs:
5960
git commit -m "prune: $(COMMIT_HASH)"
6061
condition: gt(variables['dropped.folders'], 0)
6162
displayName: "Prune notebook"
63+
timeoutInMinutes: "10"
6264
6365
- bash: |
66+
set -ex
6467
git status
6568
git push https://$(PAT_GHOST)@github.com/Lightning-AI/tutorials.git $(PUB_BRANCH)
66-
displayName: "Finish push"
69+
displayName: "Finish with push"
6770
6871
- job: papermill
6972
dependsOn: sync_pub
73+
# run if the initial job succeeded and the strategy matrix is not empty
74+
condition: and(succeeded(), ne(dependencies.sync_pub.outputs['mtrx.dirs'], ''))
7075
strategy:
7176
# generated matrix with changed notebooks, include fields: "notebook", "agent-pool" and "docker-image"
7277
matrix: $[ dependencies.sync_pub.outputs['mtrx.dirs'] ]
@@ -94,8 +99,6 @@ jobs:
9499
COMMIT_HASH: "$(Build.SourceVersion)"
95100
DEVICES: $( python -c 'print("$(Agent.Name)".split("_")[-1])' )
96101

97-
condition: ne(dependencies.sync_pub.outputs['mtrx.dirs'], '')
98-
99102
steps:
100103
- bash: |
101104
echo "##vso[task.setvariable variable=CUDA_VISIBLE_DEVICES]$(DEVICES)"
@@ -118,6 +121,7 @@ jobs:
118121
printf "commit hash:\n $(COMMIT_HASH)\n"
119122
printf "commit message:\n $(COMMIT_MSG)\n"
120123
displayName: "Set Git user"
124+
timeoutInMinutes: "5"
121125
- bash: |
122126
set -e
123127
git fetch --all
@@ -128,6 +132,7 @@ jobs:
128132
git show-ref $(PUB_BRANCH)
129133
git pull
130134
displayName: "Git check & switch branch"
135+
timeoutInMinutes: "5"
131136
132137
- bash: |
133138
set -e
@@ -136,6 +141,7 @@ jobs:
136141
# todo: adjust torch ecosystem versions
137142
pip install -r requirements.txt -r _requirements/data.txt
138143
displayName: "Install dependencies"
144+
timeoutInMinutes: "15"
139145
140146
- bash: |
141147
set -e
@@ -146,6 +152,7 @@ jobs:
146152
147153
- bash: python .actions/assistant.py convert-ipynb $(notebook)
148154
displayName: "Generate notebook"
155+
timeoutInMinutes: "5"
149156

150157
- bash: |
151158
set -e
@@ -161,7 +168,8 @@ jobs:
161168
displayName: "Render notebook"
162169
163170
- bash: |
171+
set -ex
164172
git status
165173
git show-ref $(PUB_BRANCH)
166174
git push https://$(PAT_GHOST)@github.com/Lightning-AI/tutorials.git $(PUB_BRANCH)
167-
displayName: "Finish push"
175+
displayName: "Finish with push"

.azure/ipynb-tests.yml .azure/ipynb-validate.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,18 @@ jobs:
1414
vmImage: "Ubuntu-20.04"
1515
steps:
1616
- bash: |
17+
set -ex
1718
pip install -r .actions/requires.txt
1819
pip list
1920
displayName: "Install dependencies"
2021
2122
- bash: |
22-
head=$(git rev-parse origin/main)
23-
printf "Head: $head\n"
24-
git diff --name-only $head --output=target-diff.txt
23+
git fetch --all # some issues with missing main :/
24+
# head=$(git rev-parse origin/main)
25+
# printf "Head: $head\n" # this shall be commit hash
26+
# git diff --name-only $head --output=target-diff.txt
27+
git diff --name-only origin/main HEAD --output=target-diff.txt
28+
cat target-diff.txt
2529
python .actions/assistant.py group-folders --fpath_gitdiff=target-diff.txt
2630
printf "Changed folders:\n"
2731
cat changed-folders.txt
@@ -35,8 +39,10 @@ jobs:
3539
- bash: echo '$(mtrx.dirs)' | python -m json.tool
3640
displayName: "Show matrix"
3741

38-
- job: nbval
42+
- job: ipython
3943
dependsOn: check_diff
44+
# run if the initial job succeeded and the strategy matrix is not empty
45+
condition: and(succeeded(), ne(dependencies.check_diff.outputs['mtrx.dirs'], ''))
4046
strategy:
4147
matrix: $[ dependencies.check_diff.outputs['mtrx.dirs'] ]
4248
# how long to run the job before automatically cancelling
@@ -55,8 +61,6 @@ jobs:
5561
PATH_DATASETS: "$(Build.Repository.LocalPath)/.datasets"
5662
DEVICES: $( python -c 'print("$(Agent.Name)".split("_")[-1])' )
5763

58-
condition: ne(dependencies.check_diff.outputs['mtrx.dirs'], '')
59-
6064
steps:
6165
- bash: |
6266
echo "##vso[task.setvariable variable=CUDA_VISIBLE_DEVICES]$(DEVICES)"
@@ -96,4 +100,4 @@ jobs:
96100
env:
97101
KAGGLE_USERNAME: $(KAGGLE_USERNAME)
98102
KAGGLE_KEY: $(KAGGLE_KEY)
99-
displayName: "PyTest notebook"
103+
displayName: "Execute notebook"

.github/dependabot.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ updates:
1616
# Allow up to 5 open pull requests for pip dependencies
1717
open-pull-requests-limit: 5
1818
reviewers:
19-
- "Lightning-AI/teams/core-lightning"
19+
- "Borda"
2020

2121
- package-ecosystem: "github-actions"
2222
directory: "/"
@@ -27,4 +27,4 @@ updates:
2727
separator: "-"
2828
open-pull-requests-limit: 5
2929
reviewers:
30-
- "Lightning-AI/core-lightning"
30+
- "Borda"

.github/label-change.yml

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
documentation:
2-
- _docs/**/*
1+
"topic: documentation":
2+
- changed-files:
3+
- any-glob-to-any-file:
4+
- _docs/**/*
35

4-
CI/CD:
5-
- .actions/**/*
6-
- .azure-*/**/*
7-
- .github/**/*
8-
- _dockers/**/*
6+
"topic: CI/CD":
7+
- changed-files:
8+
- any-glob-to-any-file:
9+
- .actions/**/*
10+
- .azure-*/**/*
11+
- .github/**/*
12+
- _dockers/**/*

0 commit comments

Comments
 (0)