File tree 2 files changed +39
-0
lines changed
2 files changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments