Skip to content

Commit

Permalink
Workaround for bullseye release CI blockage
Browse files Browse the repository at this point in the history
Switch out `apt-get update` commands that are run in CI to being
`apt-get --allow-releaseinfo-change update` to ignore the error on new
release change.

Workaround for googleforgames#2224 until we can upgrade everything to bullseye.
  • Loading branch information
markmandel committed Aug 17, 2021
1 parent 0c1fd4f commit 34b7c82
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/build-sdk-images/cpp/Dockerfile
Expand Up @@ -14,7 +14,7 @@
ARG BASE_IMAGE=agones-build-sdk-base:latest
FROM $BASE_IMAGE

RUN apt-get update && \
RUN apt-get --allow-releaseinfo-change update && \
apt-get install -y zip wget clang-format && \
apt-get clean

Expand Down
2 changes: 1 addition & 1 deletion build/build-sdk-images/csharp/Dockerfile
Expand Up @@ -18,7 +18,7 @@ FROM $BASE_IMAGE
# This should contains tooling required to generate GRPC code, build (if distribution is required)
# and test your integration.

RUN apt-get update \
RUN apt-get --allow-releaseinfo-change update && \
&& apt-get install -y wget

RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion build/build-sdk-images/go/Dockerfile
Expand Up @@ -14,7 +14,7 @@
ARG BASE_IMAGE=agones-build-sdk-base:latest
FROM $BASE_IMAGE

RUN apt-get update && \
RUN apt-get --allow-releaseinfo-change update && \
apt-get install -y wget jq && \
apt-get clean

Expand Down
2 changes: 1 addition & 1 deletion build/build-sdk-images/restapi/Dockerfile
Expand Up @@ -14,7 +14,7 @@
ARG BASE_IMAGE=agones-build-sdk-base:latest
FROM $BASE_IMAGE

RUN apt-get update && \
RUN apt-get --allow-releaseinfo-change update && \
apt-get install -y wget jq && \
apt-get clean

Expand Down
2 changes: 1 addition & 1 deletion build/build-sdk-images/rust/Dockerfile
Expand Up @@ -14,7 +14,7 @@
ARG BASE_IMAGE=agones-build-sdk-base:latest
FROM $BASE_IMAGE

RUN apt-get update && \
RUN apt-get --allow-releaseinfo-change update && \
apt-get install -y wget && \
apt-get clean

Expand Down

0 comments on commit 34b7c82

Please sign in to comment.