remove abandoned snapshots from LATEST (#15444)

I can't think of any reason to keep those around.
This commit is contained in:
Gary Verhaegen 2022-11-24 17:21:53 +01:00 committed by GitHub
parent ec94f7385b
commit 5f4beecccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 7 deletions

4
LATEST
View File

@ -13,13 +13,11 @@ ce3516ec43dc9c06b9f6dc0d95993db587b7fbd2 2.2.0 SPLIT_RELEASE
4b71431b207db11fa355a445e35bc567502df033 2.1.1 SPLIT_RELEASE
4b71431b207db11fa355a445e35bc567502df033 2.1.0 SPLIT_RELEASE
be297dcb80660feb16f986538f42a7c618ccd9f0 2.0.1 SPLIT_RELEASE
4038d0a7e3694305ba477cd9a4268400c39c20cd 2.0.0-snapshot.20220127.9042.0.4038d0a7
b291a57e5c1c8fbed19dc1ffc3a7bce1bd121e04 2.0.0 SPLIT_RELEASE
24f23e5673c241e61b08004062ee5dd0949284b0 1.18.3
5cfb1a216816f318e26c5158a3402e3dbc969574 1.18.2
1724373fd395bb1fc604ea8628dce89110d1467f 1.18.1
2c945fcb3a2ca0972fbf8f222420b286f20b29e7 1.18.0
b33b94b85c23235a9d62fb7a9967f1f91247ed76 1.17.2-snapshot.20211124.7857.0.b33b94b8
e05be36512ade4d9cb6921614c23dadbde1747a3 1.17.1
49a75801fbafa1ffab3247ecfbb06a82925e8a0b 1.17.0
48050ad7836b9825c9dc7bd96fbc980b8eb9b6e5 1.16.0
@ -36,7 +34,6 @@ d3d5042ac04f4c0f755df7e87bc191716fdecc4c 1.11.0
80d080ef9f1c63de6f94d22592f89d623bfb1fa6 1.10.2
19bf4031f551334ff70a77bbf469b8af8e061bf2 1.10.0
5b3663a500e6840109e0e3e21cd6dea3c546573d 1.9.0
d443707c1893b58206f2f2ba62a18cd25e1ff53c 1.8.0-snapshot.20210303.5843.0.d443707c
59f5d40754bebf76f0530d94eb4c723cba21a21b 1.8.1
38455e8ca91ca3c351a6d15bd9ec25070386fc6c 1.8.0
e75d42ddc3150c0e054c35cc8c5afcf523ed5702 1.7.0
@ -45,7 +42,6 @@ d21cb496b7373dcf5c7afcc373b7898cbe54019e 1.6.0
eb68e680f649bc7c2b6b2c3b8a4c7a664f52ecec 1.5.0
224ab3621c8c3745aa5af78f655b4676794d7a5f 1.4.0
8e10c7a7338d72b907ae72f77c03b06cbe8426af 1.3.0
11b5c36282407284122326c4d80cb7a6015ed825 1.3.0-snapshot.20200610.4413.0.11b5c362
1c18058f019229cd0af64669af0de31d0cec916d 1.2.0
7e448d810c1134c39afa2c555e85964b68976446 1.1.1
160936905d393a6f8fb35ea02ad6b3c401820dad 1.0.1

View File

@ -44,20 +44,22 @@ jobs:
setvar trigger_sha $(branch_sha)
setvar release_sha "$(added_line | awk '{print $1}')"
RELEASE_TAG="$(added_line | awk '{print $2}')"
setvar release_tag "$RELEASE_TAG"
if [ "$(added_line | awk '{print $3}')" == "SPLIT_RELEASE" ]; then
setvar split_release_process true
else
setvar split_release_process false
fi
else
echo "Release commit should only add one version."
exit 1
echo "Not a release commit despite changes to LATEST."
setvar split_release_process false
setvar is_release false
RELEASE_TAG="0.0.0"
fi
else
RELEASE_TAG="0.0.0"
setvar is_release false
fi
setvar release_tag "$RELEASE_TAG"
# This is the last snapshot that does not support Scala 2.13.
CMP="$(semver compare "$RELEASE_TAG" '1.11.0-snapshot.20210212.6300.0.ad161d7f')"