Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .lgtm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ extraction:
cpp:
configure:
command:
- GEODE_VERSION=1.15.0
- GEODE_VERSION=1.15.1
- mkdir _lgtm_build_dir
- cd _lgtm_build_dir
- wget -O apache-geode.tgz https://downloads.apache.org/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz
Expand Down
2 changes: 1 addition & 1 deletion docker/centos-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/centos-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/rhel-7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/rhel-8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-16.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-18.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu-20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ RUN installer=$(mktemp) \
&& bash ${installer} --skip-license --prefix=/usr/local \
&& rm ${installer}

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME /apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/${GEODE_VERSION}/apache-geode-${GEODE_VERSION}.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down
2 changes: 1 addition & 1 deletion docker/windows/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ RUN choco install `
# Only for NUnit 2.6
RUN choco install nunit.install --version 2.6.4 -confirm

ARG GEODE_VERSION=1.15.0
ARG GEODE_VERSION=1.15.1
ENV GEODE_HOME C:\apache-geode-${GEODE_VERSION}
RUN curl -L -s "https://www.apache.org/dyn/closer.lua/geode/%GEODE_VERSION%/apache-geode-%GEODE_VERSION%.tgz?action=download" | tar -zxvf - --exclude javadoc

Expand Down