forked from kubeflow/kubeflow
-
Notifications
You must be signed in to change notification settings - Fork 0
107 lines (98 loc) · 2.98 KB
/
example_notebook_servers_publish.yaml
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
name: Build & Publish Notebook Servers
on:
push:
branches:
- master
- v*-branch
paths:
- components/example-notebook-servers/**
- releasing/version/VERSION
jobs:
base_images:
name: Build & Push - Base
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
base
codeserver_images:
name: Build & Push - Code Server
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ base_images ]
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
codeserver
codeserver-python
rstudio_images:
name: Build & Push - RStudio
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ base_images ]
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
rstudio
rstudio-tidyverse
jupyter_images:
name: Build & Push - Jupyter
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ base_images ]
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
jupyter
jupyter_scipy_images:
name: Build & Push - Jupyter (SciPy)
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ jupyter_images ]
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
jupyter-scipy
jupyter_pytorch_images:
name: Build & Push - Jupyter (PyTorch)
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ jupyter_images ]
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
jupyter-pytorch
jupyter-pytorch-full
jupyter_pytorch_cuda_images:
name: Build & Push - Jupyter (PyTorch + CUDA)
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ jupyter_images ]
secrets: inherit
with:
# TODO: support 'linux/arm64' for PyTorch CUDA images
build_arch: linux/amd64
image_folders: |
jupyter-pytorch-cuda
jupyter-pytorch-cuda-full
jupyter_tensorflow_images:
name: Build & Push - Jupyter (TensorFlow)
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ jupyter_images ]
secrets: inherit
with:
build_arch: linux/amd64,linux/arm64
image_folders: |
jupyter-tensorflow
jupyter-tensorflow-full
jupyter_tensorflow_cuda_images:
name: Build & Push - Jupyter (TensorFlow + CUDA)
uses: ./.github/workflows/example_notebook_servers_publish_TEMPLATE.yaml
needs: [ jupyter_images ]
secrets: inherit
with:
# TODO: support 'linux/arm64' for TensorFlow CUDA images
build_arch: linux/amd64
image_folders: |
jupyter-tensorflow-cuda
jupyter-tensorflow-cuda-full