-
Notifications
You must be signed in to change notification settings - Fork 688
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GEODE-9529: fix release scripts (benchmark baseline, docker) (#6779)
* update benchmark baseline on support branch on new minor release * make it clear that Dockerfile on develop is a template, and can only be used to build a Geode image from a released support branch * change end-of-support message to version-based not time-based
- Loading branch information
1 parent
0d1954b
commit 9ff39d1
Showing
2 changed files
with
22 additions
and
13 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
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 |
---|---|---|
|
@@ -16,26 +16,23 @@ | |
|
||
FROM bellsoft/liberica-openjdk-alpine:8 | ||
|
||
RUN echo "This is a TEMPLATE, DO NOT build from this Dockerfile. Instead checkout master or any released support/x.y branch." ; exit 1 | ||
|
||
# runtime dependencies | ||
RUN apk add --no-cache \ | ||
bash \ | ||
ncurses | ||
|
||
# pub 4096R/ABF4396F 2018-04-12 [expires: 2022-04-12] | ||
# 8763 31B4 5A97 E382 D1BD FB44 4482 0F9C ABF4 396F | ||
# uid [ undef ] Mike Stolz <[email protected]> | ||
# sub 4096R/3871E6AD 2018-04-12 [expires: 2022-04-12] | ||
ENV GEODE_GPG DB5476815A475574577D442B468A4800EAFB2498 | ||
# TODO does this change per-release like other Apache projects? (and thus needs to be a list of full fingerprints from a KEYS file instead?) | ||
ENV GEODE_GPG $$PLACEHOLDER$$ | ||
|
||
ENV GEODE_HOME /geode | ||
ENV PATH $PATH:$GEODE_HOME/bin | ||
|
||
# https://geode.apache.org/releases/ | ||
ENV GEODE_VERSION 1.9.0 | ||
ENV GEODE_VERSION $$PLACEHOLDER$$ | ||
# Binaries TGZ SHA-256 | ||
# https://dist.apache.org/repos/dist/release/geode/VERSION/apache-geode-VERSION.tgz.sha256 | ||
ENV GEODE_SHA256 8794808ebc89bc855f0b989b32e91e890d446cfd058e123f6ccb9e12597c1c4f | ||
ENV GEODE_SHA256 $$PLACEHOLDER$$ | ||
|
||
# http://apache.org/dyn/closer.cgi/geode/1.3.0/apache-geode-1.3.0.tgz | ||
|
||
|
@@ -50,7 +47,7 @@ RUN set -eux; \ | |
; do \ | ||
target="$(basename "$file")"; \ | ||
for url in \ | ||
"https://www.apache.org/dyn/closer.lua/$file?action=download" | ||
"https://www.apache.org/dyn/closer.lua/$file?action=download" \ | ||
"https://downloads.apache.org/$file" \ | ||
"https://archive.apache.org/dist/$file" \ | ||
; do \ | ||
|