Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround for bullseye release CI blockage #2225

Merged
merged 2 commits into from
Aug 18, 2021
Merged
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 build/build-sdk-images/cpp/Dockerfile
Original file line number Diff line number Diff line change
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
4 changes: 2 additions & 2 deletions build/build-sdk-images/csharp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ 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 \
&& apt-get install -y wget
RUN apt-get --allow-releaseinfo-change update && \
apt-get install -y wget

RUN apt-get update \
&& apt-get install -y apt-transport-https
Expand Down
2 changes: 1 addition & 1 deletion build/build-sdk-images/go/Dockerfile
Original file line number Diff line number Diff line change
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
4 changes: 3 additions & 1 deletion build/build-sdk-images/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
ARG BASE_IMAGE=agones-build-sdk-base:latest
FROM $BASE_IMAGE

RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
## --allow-releaseinfo-change is a workaround for the new debian release
## Can be removed when upgrading to bullseye
RUN apt-get --allow-releaseinfo-change update && curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
apt-get install -y nodejs

# Installing request is to address a bug with node-pre-gyp
Expand Down
2 changes: 1 addition & 1 deletion build/build-sdk-images/restapi/Dockerfile
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
2 changes: 1 addition & 1 deletion site/content/en/_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2 class="text-center pb-3">Companies using Agones</h2>
<a href="http://accelbyte.io/"><img alt="accelbyte" width="100" src="images/accelbyte.png" /></a>
<a href="https://space.game/"><img alt="Space Game" width="80" src="images/spacegame.png" /></a>
<a href="https://rolltable.app/"><img alt="rolltable" width="100" src="images/rolltable.png" /></a>
<a href="https://vela.games/"><img alt="Vela Games" width="100" src="images/velagames.png" /></a>
<a href="https://vela.games/" data-proofer-ignore><img alt="Vela Games" width="100" src="images/velagames.png" /></a>
<a href="https://netspeakgames.com//"><img alt="Netspeak Games" width="100" src="images/netspeakgames.png" /></a>
<a href="https://afterverse.com/"><img alt="Afterverse" width="100" src="images/afterverse.svg" /></a>
</p>
Expand Down
2 changes: 1 addition & 1 deletion site/htmltest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ ExternalTimeout: 60
IgnoreURLs:
- http://localhost
HTTPHeaders:
User-Agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36"
User-Agent: "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.159 Safari/537.36"