19
19
jobs :
20
20
test :
21
21
name : Unit tests
22
- if : false # delete this line to enable automatic testing
22
+ if : False
23
23
runs-on : ubuntu-22.04
24
24
steps :
25
- - uses : actions/checkout@v3
26
- - uses : docker/setup-buildx-action@v2
27
- - name : Cache Docker layers
28
- uses : actions/cache@v3
29
- with :
30
- path : /tmp/.buildx-cache
31
- key : ${{ runner.os }}-buildx-${{ github.sha }}
32
- restore-keys : |
33
- ${{ runner.os }}-buildx-
25
+ - uses : actions/checkout@v4
26
+ - uses : docker/setup-buildx-action@v3
34
27
- name : Build
35
- uses : docker/build-push-action@v3
28
+ uses : docker/build-push-action@v5
36
29
with :
37
30
build-args : extras_require=dev
38
31
context : .
39
32
load : true
40
33
push : false
41
34
tags : " localhost/local/app:dev"
42
- cache-from : type=local,src=/tmp/.buildx-cache
43
- cache-to : type=local,dest=/tmp/.buildx-cache
35
+ cache-from : type=gha
36
+ cache-to : type=gha,mode=max
44
37
- name : Run pytest
45
38
run : |
46
39
docker run -v "$GITHUB_WORKSPACE:/app:ro" -w /app localhost/local/app:dev \
@@ -53,60 +46,66 @@ jobs:
53
46
runs-on : ubuntu-22.04
54
47
55
48
steps :
56
- - name : Get git tag
57
- id : git_info
58
- if : startsWith(github.ref, 'refs/tags/')
59
- run : echo "tag=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
60
- - name : Get project info
61
- id : determine
62
- env :
63
- git_tag : ${{ steps.git_info.outputs.tag }}
49
+ - name : Decide image tags
50
+ id : info
51
+ shell : python
64
52
run : |
65
- repo="${GITHUB_REPOSITORY,,}" # to lower case
66
- # if build triggered by tag, use tag name
67
- tag="${git_tag:-latest}"
53
+ import os
54
+ import itertools
68
55
69
- # if tag is a version number prefixed by 'v', remove the 'v'
70
- if [[ "$tag" =~ ^v[0-9].* ]]; then
71
- tag="${tag:1}"
72
- fi
56
+ def join_tag(t):
57
+ registry, repo, tag = t
58
+ return f'{registry}/{repo}:{tag}'.lower()
59
+
60
+ registries = ['docker.io', 'ghcr.io']
61
+ repos = ['${{ github.repository }}']
62
+ if '${{ github.ref_type }}' == 'branch':
63
+ tags = ['latest']
64
+ elif '${{ github.ref_type }}' == 'tag':
65
+ tag = '${{ github.ref_name }}'
66
+ version = tag[1:] if tag.startswith('v') else tag
67
+ tags = ['latest', version]
68
+ else:
69
+ tags = []
70
+
71
+ if '${{ github.ref_type }}' == 'tag':
72
+ local_tag = join_tag(('ghcr.io', '${{ github.repository }}', version))
73
+ else:
74
+ local_tag = join_tag(('localhost', '${{ github.repository }}', 'latest'))
73
75
74
- dock_image=$repo:$tag
75
- echo $dock_image
76
- echo "dock_image=$dock_image" >> $GITHUB_OUTPUT
77
- echo "repo=$repo" >> $GITHUB_OUTPUT
76
+ product = itertools.product(registries, repos, tags)
77
+ tags_csv = ','.join(map(join_tag, product))
78
+ outputs = {
79
+ 'tags_csv' : tags_csv,
80
+ 'push' : 'true' if tags_csv else 'false',
81
+ 'local_tag': local_tag
82
+ }
83
+ with open(os.environ['GITHUB_OUTPUT'], 'a') as out:
84
+ for k, v in outputs.items():
85
+ out.write(f'{k}={v}\n')
78
86
79
- - uses : actions/checkout@v3
87
+ - uses : actions/checkout@v4
80
88
# QEMU is used for non-x86_64 builds
81
- - uses : docker/setup-qemu-action@v2
89
+ - uses : docker/setup-qemu-action@v3
82
90
# buildx adds additional features to docker build
83
- - uses : docker/setup-buildx-action@v2
91
+ - uses : docker/setup-buildx-action@v3
84
92
with :
85
93
driver-opts : network=host
86
- # cache slightly improves rebuild time
87
- - name : Cache Docker layers
88
- uses : actions/cache@v3
89
- with :
90
- path : /tmp/.buildx-cache
91
- key : ${{ runner.os }}-buildx-${{ github.sha }}
92
- restore-keys : |
93
- ${{ runner.os }}-buildx-
94
94
95
95
# Here, we want to do the docker build twice:
96
96
# The first build pushes to our local registry for testing.
97
- # The second build pushes to Docker Hub and ghcr.io
97
+ # The second build pushes to Docker Hub and ghcr.io
98
98
- name : Build (local only)
99
99
uses : docker/build-push-action@v3
100
100
id : docker_build
101
101
with :
102
102
context : .
103
103
file : ./Dockerfile
104
- tags : localhost/ ${{ steps.determine .outputs.dock_image }}
104
+ tags : ${{ steps.info .outputs.local_tag }}
105
105
load : true
106
- cache-from : type=local,src=/tmp/.buildx-cache
107
- cache-to : type=local,dest=/tmp/.buildx-cache
106
+ cache-from : type=gha
108
107
# If you have a directory called examples/incoming/ and examples/outgoing/, then
109
- # run your ChRIS plugin with no parameters, and asser that it creates all the files
108
+ # run your ChRIS plugin with no parameters, and assert that it creates all the files
110
109
# which are expected. File contents are not compared.
111
110
- name : Run examples
112
111
id : run_examples
@@ -116,7 +115,7 @@ jobs:
116
115
exit 0
117
116
fi
118
117
119
- dock_image=localhost/ ${{ steps.determine .outputs.dock_image }}
118
+ dock_image=${{ steps.info .outputs.local_tag }}
120
119
output_dir=$(mktemp -d)
121
120
cmd=$(docker image inspect -f '{{ (index .Config.Cmd 0) }}' $dock_image)
122
121
docker run --rm -u "$(id -u):$(id -g)" \
@@ -137,41 +136,29 @@ jobs:
137
136
done
138
137
139
138
- name : Login to DockerHub
140
- id : dockerhub_login
141
- uses : docker/login-action@v2
139
+ if : (github.event_name == 'push' || github.event_name == 'release') && contains(steps.info.outputs.tags_csv, 'docker.io')
140
+ uses : docker/login-action@v3
142
141
with :
143
142
username : ${{ secrets.DOCKERHUB_USERNAME }}
144
143
password : ${{ secrets.DOCKERHUB_PASSWORD }}
145
-
146
144
- name : Login to GitHub Container Registry
147
- uses : docker/login-action@v2
145
+ if : (github.event_name == 'push' || github.event_name == 'release') && contains(steps.info.outputs.tags_csv, 'ghcr.io')
146
+ uses : docker/login-action@v3
148
147
with :
149
148
registry : ghcr.io
150
149
username : ${{ github.repository_owner }}
151
150
password : ${{ secrets.GITHUB_TOKEN }}
152
151
- name : Build and push
153
- uses : docker/build-push-action@v3
154
- if : github.event_name == 'push' || github.event_name == 'release'
152
+ uses : docker/build-push-action@v5
153
+ if : ( github.event_name == 'push' || github.event_name == 'release')
155
154
with :
156
155
context : .
157
156
file : ./Dockerfile
158
- tags : |
159
- docker.io/${{ steps.determine.outputs.dock_image }}
160
- ghcr.io/${{ steps.determine.outputs.dock_image }}
157
+ tags : ${{ steps.info.outputs.tags_csv }}
161
158
# if non-x86_84 architectures are supported, add them here
162
159
platforms : linux/amd64 # ,linux/arm64,linux/ppc64le
163
- push : true
164
- cache-from : type=local,src=/tmp/.buildx-cache
165
- cache-to : type=local,dest=/tmp/.buildx-cache
166
-
167
- - name : Get plugin meta
168
- id : pluginmeta
169
- run : |
170
- repo=${{ steps.determine.outputs.repo }}
171
- dock_image=${{ steps.determine.outputs.dock_image }}
172
- docker run --rm localhost/$dock_image chris_plugin_info > /tmp/description.json
173
- jq < /tmp/description.json # pretty print in log
174
- echo "title=$(jq -r '.title' < /tmp/description.json)" >> $GITHUB_OUTPUT
160
+ push : ${{ steps.info.outputs.push }}
161
+ cache-to : type=gha,mode=max
175
162
176
163
- name : Upload ChRIS Plugin
177
164
id : upload
@@ -185,11 +172,11 @@ jobs:
185
172
compute_names : NERC
186
173
187
174
- name : Update DockerHub description
175
+ if : steps.upload.outcome == 'success'
188
176
uses : peter-evans/dockerhub-description@v3
189
177
continue-on-error : true # it is not crucial that this works
190
178
with :
191
179
username : ${{ secrets.DOCKERHUB_USERNAME }}
192
180
password : ${{ secrets.DOCKERHUB_PASSWORD }}
193
- short-description : ${{ steps.pluginmeta.outputs.title }}
194
- readme-filepath : ./README.md
195
- repository : ${{ steps.determine.outputs.repo }}
181
+ short-description : ${{ steps.upload.outputs.title }}
182
+ readme-filepath : ./README.md
0 commit comments