Skip to content

Commit 97f2b4c

Browse files
committed
check-remote-image-existence.yml: check remote image existence in templates
Signed-off-by: Norio Nomura <[email protected]> check-remote-image-existence.yml: use actions/checkout@v4 Signed-off-by: Norio Nomura <[email protected]>
1 parent f3cb0f4 commit 97f2b4c

File tree

2 files changed

+39
-0
lines changed

2 files changed

+39
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Check Remote Image Existence
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'examples/**.yaml'
7+
- 'hack/test-templates/**.yaml'
8+
- 'hack/check-remote-image-existence.sh'
9+
10+
jobs:
11+
check-remote-image-existence:
12+
name: Check Remote Image Existence
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
19+
- name: Run check-remote-image-existence.sh
20+
run: ./hack/check-remote-image-existence.sh

hack/check-remote-image-existence.sh

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
set -eu -o pipefail
3+
4+
# Get the directory of the script
5+
script_dir=$(dirname "$0")
6+
7+
for template in $(realpath "${script_dir}"/../examples/*.yaml "${script_dir}"/./test-templates/*.yaml|sort -u); do
8+
for location in $(yq eval '.images[].location' "${template}"); do
9+
if [[ "${location}" == http* ]]; then
10+
response=$(curl -L -s -I -o /dev/null -w "%{http_code}" "${location}")
11+
if [[ ${response} != "200" ]]; then
12+
line=$(grep -n "${location}" "${template}" | cut -d ':' -f 1)
13+
echo "::error file=${template},line=${line}::response: ${response} for ${location}"
14+
else
15+
echo "response: ${response} for ${location}"
16+
fi
17+
fi
18+
done
19+
done

0 commit comments

Comments
 (0)