-
Notifications
You must be signed in to change notification settings - Fork 2
214 lines (204 loc) · 6.73 KB
/
containers.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
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
name: Containers
on:
push:
branches:
- main
paths:
- 'dockerfiles/**'
pull_request:
branches:
- main
paths:
- 'dockerfiles/**'
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
get-issue-number:
runs-on: ubuntu-latest
name: Get PR number
permissions:
contents: read
outputs:
pr-number: "${{ steps.pr-number.outputs.pr-number }}"
steps:
- uses: actions/github-script@v6
id: get-issue-number
with:
script: |
if (context.issue.number) {
return context.issue.number;
} else {
return (
await github.rest.repos.listPullRequestsAssociatedWithCommit({
commit_sha: context.sha,
owner: context.repo.owner,
repo: context.repo.repo,
})
).data[0].number;
}
result-encoding: string
- id: pr-number
run: echo "pr-number=${{ steps.get-issue-number.outputs.result }}" >> $GITHUB_OUTPUT
build-minimal-notebook:
needs:
- get-issue-number
runs-on: ubuntu-latest
name: Build minimal-notebook
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- id: get-version
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
echo "version=pr-${{ needs.get-issue-number.outputs.pr-number }}" >> $GITHUB_OUTPUT
else
pip install tbump
pushd dockerfiles/minimal-notebook
echo "version=$(tbump current-version)" >> $GITHUB_OUTPUT
fi
- uses: docker/build-push-action@v5
with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: dockerfiles/minimal-notebook
push: true
tags: ghcr.io/esgf-nimbus/minimal-notebook:${{ steps.get-version.outputs.version }}
build-climate-notebook:
needs:
- get-issue-number
- build-minimal-notebook
runs-on: ubuntu-latest
name: Build climate-notebook
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- id: get-version
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
VERSION=pr-${{ needs.get-issue-number.outputs.pr-number }}
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "build-args=TAG=$VERSION" >> $GITHUB_OUTPUT
else
pip install tbump
pushd dockerfiles/climate-notebook
echo "version=$(tbump current-version)" >> $GITHUB_OUTPUT
echo "build-args=" >> $GITHUB_OUTPUT
fi
- uses: docker/build-push-action@v5
with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: dockerfiles/climate-notebook
push: true
tags: ghcr.io/esgf-nimbus/climate-notebook:${{ steps.get-version.outputs.version }}
build-args: "${{ steps.get-version.outputs.build-args }}"
build-climate-notebook-gpu:
needs:
- get-issue-number
- build-climate-notebook
runs-on: ubuntu-latest
name: Build climate-notebook-gpu
permissions:
packages: write
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- id: get-version
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
VERSION=pr-${{ needs.get-issue-number.outputs.pr-number }}
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "build-args=TAG=$VERSION" >> $GITHUB_OUTPUT
else
pip install tbump
pushd dockerfiles/climate-notebook-gpu
echo "version=$(tbump current-version)" >> $GITHUB_OUTPUT
echo "build-args=" >> $GITHUB_OUTPUT
fi
- uses: docker/build-push-action@v5
with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: dockerfiles/climate-notebook-gpu
push: true
tags: ghcr.io/esgf-nimbus/climate-notebook-gpu:${{ steps.get-version.outputs.version }}
build-args: "${{ steps.get-version.outputs.build-args }}"
other-containers:
runs-on: ubuntu-latest
name: Get other containers
outputs:
directories: "${{ steps.get-paths.outputs.directories }}"
steps:
- uses: actions/checkout@v4
- id: get-paths
run: |
CONTAINERS="$(ls dockerfiles/ | grep -v -E "Makefile|climate*|minimal" | jq -R -s -c 'split("\n")[:-1]')"
echo "directories=$CONTAINERS" >> $GITHUB_OUTPUT
build-other-containers:
needs:
- get-issue-number
- other-containers
runs-on: ubuntu-latest
name: Build other containers
permissions:
packages: write
strategy:
matrix:
directory: ${{ fromJSON(needs.other-containers.outputs.directories) }}
steps:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- id: get-version
run: |
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
VERSION=pr-${{ needs.get-issue-number.outputs.pr-number }}
echo "version=$VERSION" >> $GITHUB_OUTPUT
else
pip install tbump
pushd dockerfiles/${{ matrix.directory }}
echo "version=$(tbump current-version)" >> $GITHUB_OUTPUT
fi
- uses: docker/build-push-action@v5
with:
cache-from: type=gha
cache-to: type=gha,mode=max
context: dockerfiles/${{ matrix.directory }}
push: true
tags: ghcr.io/esgf-nimbus/${{ matrix.directory }}:${{ steps.get-version.outputs.version }}