Skip to content

Commit 43f9c18

Browse files
Merge pull request #120 from opensciencegrid/SOFTWARE-6027-osg-24
SOFTWARE-6027: OSG 24 (take 2)
2 parents 79596cc + d922220 commit 43f9c18

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

.github/workflows/release-series-builds.yml

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,15 @@ jobs:
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

0 commit comments

Comments
 (0)