Skip to content

Commit

Permalink
Merge pull request #120 from opensciencegrid/SOFTWARE-6027-osg-24
Browse files Browse the repository at this point in the history
SOFTWARE-6027: OSG 24 (take 2)
  • Loading branch information
matyasselmeci authored Dec 4, 2024
2 parents 79596cc + d922220 commit 43f9c18
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion .github/workflows/release-series-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@ jobs:
osg_series:
- name: '23'
os: 'el9'
- name: '24'
os: 'el9'
exclude:
- osg_series:
name: 24
image: stash-cache
- osg_series:
name: 24
image: stash-origin
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -107,6 +116,7 @@ jobs:
matrix:
repo: ['development', 'testing', 'release']
osg_series:
# TODO build new test suite for osg 24 pelican origin/cache tooling
- name: '23'
os: 'el9'
steps:
Expand Down Expand Up @@ -177,6 +187,17 @@ jobs:
osg_series:
- name: '23'
os: 'el9'
organization: 'opensciencegrid'
- name: '24'
os: 'el9'
organization: 'osg-htc'
exclude:
- osg_series:
name: 24
image: stash-cache
- osg_series:
name: 24
image: stash-origin
needs: [make-date-tag, test-stash-cache]
runs-on: ubuntu-latest
steps:
Expand All @@ -194,11 +215,16 @@ jobs:
REPO: ${{ matrix.repo }}
SERIES: ${{ matrix.osg_series.name }}
IMAGE: ${{ matrix.image }}
ORGANIZATION: ${{ matrix.osg_series.organization }}
TIMESTAMP: ${{ needs.make-date-tag.outputs.dtag }}
run: |
docker_repo=opensciencegrid/$IMAGE
docker_repo=$ORGANIZATION/$IMAGE
tag_list=()
for registry in hub.opensciencegrid.org docker.io; do
# osg-htc org doesn't exist in docker.io
if [[ "$registry" == "docker.io" && "$ORGANIZATION" == "osg-htc" ]]; then
continue
fi
for image_tag in "$SERIES-$REPO" "$SERIES-$REPO-$TIMESTAMP"; do
tag_list+=("$registry/$docker_repo":"$image_tag")
done
Expand Down

0 comments on commit 43f9c18

Please sign in to comment.