File tree Expand file tree Collapse file tree 1 file changed +27
-1
lines changed
Expand file tree Collapse file tree 1 file changed +27
-1
lines changed Original file line number Diff line number Diff line change 6666 osg_series :
6767 - name : ' 23'
6868 os : ' el9'
69+ - name : ' 24'
70+ os : ' el9'
71+ exclude :
72+ - osg_series :
73+ name : 24
74+ image : stash-cache
75+ - osg_series :
76+ name : 24
77+ image : stash-origin
6978 runs-on : ubuntu-latest
7079 steps :
7180 - uses : actions/checkout@v3
@@ -107,6 +116,7 @@ jobs:
107116 matrix :
108117 repo : ['development', 'testing', 'release']
109118 osg_series :
119+ # TODO build new test suite for osg 24 pelican origin/cache tooling
110120 - name : ' 23'
111121 os : ' el9'
112122 steps :
@@ -177,6 +187,17 @@ jobs:
177187 osg_series :
178188 - name : ' 23'
179189 os : ' el9'
190+ organization : ' opensciencegrid'
191+ - name : ' 24'
192+ os : ' el9'
193+ organization : ' osg-htc'
194+ exclude :
195+ - osg_series :
196+ name : 24
197+ image : stash-cache
198+ - osg_series :
199+ name : 24
200+ image : stash-origin
180201 needs : [make-date-tag, test-stash-cache]
181202 runs-on : ubuntu-latest
182203 steps :
@@ -194,11 +215,16 @@ jobs:
194215 REPO : ${{ matrix.repo }}
195216 SERIES : ${{ matrix.osg_series.name }}
196217 IMAGE : ${{ matrix.image }}
218+ ORGANIZATION : ${{ matrix.osg_series.organization }}
197219 TIMESTAMP : ${{ needs.make-date-tag.outputs.dtag }}
198220 run : |
199- docker_repo=opensciencegrid /$IMAGE
221+ docker_repo=$ORGANIZATION /$IMAGE
200222 tag_list=()
201223 for registry in hub.opensciencegrid.org docker.io; do
224+ # osg-htc org doesn't exist in docker.io
225+ if [[ "$registry" == "docker.io" && "$ORGANIZATION" == "osg-htc" ]]; then
226+ continue
227+ fi
202228 for image_tag in "$SERIES-$REPO" "$SERIES-$REPO-$TIMESTAMP"; do
203229 tag_list+=("$registry/$docker_repo":"$image_tag")
204230 done
You can’t perform that action at this time.
0 commit comments