Skip to content

Commit cecc46d

Browse files
committed
updated CI/CD script
1 parent 12674a2 commit cecc46d

File tree

2 files changed

+61
-74
lines changed

2 files changed

+61
-74
lines changed

.github/workflows/ci.yml

+60-73
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,21 @@ on:
1919
jobs:
2020
test:
2121
name: Unit tests
22-
if: false # delete this line to enable automatic testing
22+
if: False
2323
runs-on: ubuntu-22.04
2424
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
3427
- name: Build
35-
uses: docker/build-push-action@v3
28+
uses: docker/build-push-action@v5
3629
with:
3730
build-args: extras_require=dev
3831
context: .
3932
load: true
4033
push: false
4134
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
4437
- name: Run pytest
4538
run: |
4639
docker run -v "$GITHUB_WORKSPACE:/app:ro" -w /app localhost/local/app:dev \
@@ -53,60 +46,66 @@ jobs:
5346
runs-on: ubuntu-22.04
5447

5548
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
6452
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
6855
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'))
7375
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')
7886
79-
- uses: actions/checkout@v3
87+
- uses: actions/checkout@v4
8088
# QEMU is used for non-x86_64 builds
81-
- uses: docker/setup-qemu-action@v2
89+
- uses: docker/setup-qemu-action@v3
8290
# buildx adds additional features to docker build
83-
- uses: docker/setup-buildx-action@v2
91+
- uses: docker/setup-buildx-action@v3
8492
with:
8593
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-
9494

9595
# Here, we want to do the docker build twice:
9696
# 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
9898
- name: Build (local only)
9999
uses: docker/build-push-action@v3
100100
id: docker_build
101101
with:
102102
context: .
103103
file: ./Dockerfile
104-
tags: localhost/${{ steps.determine.outputs.dock_image }}
104+
tags: ${{ steps.info.outputs.local_tag }}
105105
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
108107
# 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
110109
# which are expected. File contents are not compared.
111110
- name: Run examples
112111
id: run_examples
@@ -116,7 +115,7 @@ jobs:
116115
exit 0
117116
fi
118117
119-
dock_image=localhost/${{ steps.determine.outputs.dock_image }}
118+
dock_image=${{ steps.info.outputs.local_tag }}
120119
output_dir=$(mktemp -d)
121120
cmd=$(docker image inspect -f '{{ (index .Config.Cmd 0) }}' $dock_image)
122121
docker run --rm -u "$(id -u):$(id -g)" \
@@ -137,41 +136,29 @@ jobs:
137136
done
138137
139138
- 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
142141
with:
143142
username: ${{ secrets.DOCKERHUB_USERNAME }}
144143
password: ${{ secrets.DOCKERHUB_PASSWORD }}
145-
146144
- 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
148147
with:
149148
registry: ghcr.io
150149
username: ${{ github.repository_owner }}
151150
password: ${{ secrets.GITHUB_TOKEN }}
152151
- 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')
155154
with:
156155
context: .
157156
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 }}
161158
# if non-x86_84 architectures are supported, add them here
162159
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
175162

176163
- name: Upload ChRIS Plugin
177164
id: upload
@@ -185,11 +172,11 @@ jobs:
185172
compute_names: NERC
186173

187174
- name: Update DockerHub description
175+
if: steps.upload.outcome == 'success'
188176
uses: peter-evans/dockerhub-description@v3
189177
continue-on-error: true # it is not crucial that this works
190178
with:
191179
username: ${{ secrets.DOCKERHUB_USERNAME }}
192180
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

image_textRemove.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from difflib import SequenceMatcher
1717
import hashlib
1818

19-
__version__ = '1.2.1'
19+
__version__ = '1.2.2'
2020

2121
DISPLAY_TITLE = r"""
2222
_ _ _ _ ______

0 commit comments

Comments
 (0)