-
Notifications
You must be signed in to change notification settings - Fork 611
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added GA workflow that checks OSS and docker release age
- Loading branch information
1 parent
40efe0a
commit c18a55e
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
name: Check OSS release age | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
pull_request: | ||
paths: | ||
- .github/workflows/verify-opensource-release-7days.yml | ||
branches: | ||
- master | ||
|
||
schedule: | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
error-if-current-release-too-old: | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Setup xq | ||
run: | | ||
sudo apt-get install -y xq | ||
- name: Error if current release is too old | ||
run: | | ||
now_epoch=`date "+%s"` | ||
echo "Now epoch: " $now_epoch | ||
current_release_date=$(curl -sLf https://repo1.maven.org/maven2/com/yahoo/vespa/cloud-tenant-base/maven-metadata.xml | \ | ||
xq -x 'metadata/versioning/lastUpdated' | cut -c 1-8) | ||
echo "Current release date: " $current_release_date | ||
current_release_epoch=`date -d "$current_release_date" "+%s"` | ||
echo "Current release epoch: " $current_release_epoch | ||
release_age_days=$((($now_epoch-$current_release_epoch)/86400)) | ||
echo "Release age days: " $release_age_days | ||
if [ "$release_age_days" -gt 7 ]; then | ||
echo "Current open source release is older than 7 days" | ||
exit 1 | ||
fi | ||
error-if-docker-image-too-old: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Error if docker image is too old | ||
run: | | ||
now_epoch=`date "+%s"` | ||
echo "Now epoch: " $now_epoch | ||
image_date=$(curl -sLf https://hub.docker.com/v2/repositories/vespaengine/vespa/ | jq -re '.last_updated') | ||
echo "Docker image last_updated: " $image_date | ||
image_epoch=`date -d "$image_date" "+%s"` | ||
echo "Docker image epoch: " $image_epoch | ||
docker_image_age_days=$((($now_epoch-$image_epoch)/86400)) | ||
echo "Docker image age days: " $docker_image_age_days | ||
if [ "$docker_image_age_days" -gt 7 ]; then | ||
echo "Current Docker image is older than 7 days" | ||
exit 1 | ||
fi | ||