forked from freeorion/freeorion
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge tag 'v0.5.0.1-rc1' into no-pullrequest-dedicated-server-v0.5
0.5.0.1 Release Candidate 1
Showing
26 changed files
with
387 additions
and
98 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 |
---|---|---|
|
@@ -32,6 +32,7 @@ runs: | |
- name: Configure | ||
shell: pwsh | ||
run: | | ||
Remove-Item -LiteralPath "C:/hostedtoolcache/windows/Python/" -Force -Recurse # Ensure that system Python is not used | ||
unzip -q ../${{ steps.download-sdk.outputs.filename }} -d .. | ||
mkdir build | ||
pushd build | ||
|
@@ -51,7 +52,7 @@ runs: | |
id: download-godot | ||
uses: suisei-cn/[email protected] | ||
with: | ||
url: https://downloads.tuxfamily.org/godotengine/3.2.3/Godot_v3.2.3-stable_win32.exe.zip | ||
url: https://github.com/godotengine/godot-builds/releases/download/3.2.3-stable/Godot_v3.2.3-stable_win32.exe.zip | ||
target: ../ | ||
- name: Download Mesa | ||
id: download-mesa | ||
|
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
FROM docker.io/debian:oldstable-slim | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN echo "# don't install documentation inside container\n\ | ||
path-exclude=/usr/share/doc/*\n\ | ||
path-exclude=/usr/share/man/*\n\ | ||
path-exclude=/usr/share/cmake-3.18/Help/*\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-documentation | ||
|
||
RUN echo "# don't install static libraries inside container\n\ | ||
path-exclude=/usr/lib/x86_64-linux-gnu/*.a\n\ | ||
path-exclude=/usr/lib/python3.9/config-x86_64-linux-gnu/*.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libc_nonshared.a\n\ | ||
path-include=/usr/lib/gcc/x86_64-linux-gnu/11/libgcc.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libmvec_nonshared.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread-2.0.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread_nonshared.a\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-static-libraries | ||
|
||
RUN echo "# don't install recommends and suggests packages\n\ | ||
APT::Install-Recommends \"false\";\n\ | ||
APT::Install-Suggests \"false\";\n\ | ||
" > /etc/apt/apt.conf.d/docker-no-suggests | ||
|
||
RUN apt-get update --assume-yes | ||
RUN apt-get install --assume-yes \ | ||
git \ | ||
g++ \ | ||
make \ | ||
cmake \ | ||
python3 \ | ||
ccache \ | ||
coreutils \ | ||
libpython3-dev \ | ||
libfreetype-dev \ | ||
libglew-dev \ | ||
libopenal-dev \ | ||
libogg-dev \ | ||
libvorbis-dev \ | ||
zlib1g-dev \ | ||
libsdl2-dev \ | ||
mesa-common-dev \ | ||
libpng-dev \ | ||
libboost-all-dev \ | ||
godot3-server \ | ||
libboost-all-dev \ | ||
libjpeg-dev \ | ||
libtiff-dev \ | ||
&& rm -rf \ | ||
/var/lib/apt/lists/* | ||
|
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
FROM i386/debian:sid-slim | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN echo "# don't install documentation inside container\n\ | ||
path-exclude=/usr/share/doc/*\n\ | ||
path-exclude=/usr/share/man/*\n\ | ||
path-exclude=/usr/share/cmake-3.18/Help/*\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-documentation | ||
|
||
RUN echo "# don't install static libraries inside container\n\ | ||
path-exclude=/usr/lib/i386-linux-gnu/*.a\n\ | ||
path-exclude=/usr/lib/python3.9/config-i386-linux-gnu/*.a\n\ | ||
path-include=/usr/lib/i386-linux-gnu/libc_nonshared.a\n\ | ||
path-include=/usr/lib/gcc/i386-linux-gnu/11/libgcc.a\n\ | ||
path-include=/usr/lib/i386-linux-gnu/libmvec_nonshared.a\n\ | ||
path-include=/usr/lib/i386-linux-gnu/libpthread.a\n\ | ||
path-include=/usr/lib/i386-linux-gnu/libpthread-2.0.a\n\ | ||
path-include=/usr/lib/i386-linux-gnu/libpthread_nonshared.a\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-static-libraries | ||
|
||
RUN echo "# don't install recommends and suggests packages\n\ | ||
APT::Install-Recommends \"false\";\n\ | ||
APT::Install-Suggests \"false\";\n\ | ||
" > /etc/apt/apt.conf.d/docker-no-suggests | ||
|
||
RUN apt-get update --assume-yes | ||
RUN apt-get install --assume-yes \ | ||
git \ | ||
g++ \ | ||
make \ | ||
cmake \ | ||
python3 \ | ||
ccache \ | ||
coreutils \ | ||
libpython3-dev \ | ||
libfreetype-dev \ | ||
libglew-dev \ | ||
libopenal-dev \ | ||
libogg-dev \ | ||
libvorbis-dev \ | ||
zlib1g-dev \ | ||
libsdl2-dev \ | ||
mesa-common-dev \ | ||
libpng-dev \ | ||
libboost-all-dev \ | ||
godot3-server \ | ||
libboost-all-dev \ | ||
libjpeg-dev \ | ||
libtiff-dev \ | ||
&& rm -rf \ | ||
/var/lib/apt/lists/* | ||
|
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
FROM docker.io/debian:sid-slim | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN echo "# don't install documentation inside container\n\ | ||
path-exclude=/usr/share/doc/*\n\ | ||
path-exclude=/usr/share/man/*\n\ | ||
path-exclude=/usr/share/cmake-3.18/Help/*\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-documentation | ||
|
||
RUN echo "# don't install static libraries inside container\n\ | ||
path-exclude=/usr/lib/x86_64-linux-gnu/*.a\n\ | ||
path-exclude=/usr/lib/python3.9/config-x86_64-linux-gnu/*.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libc_nonshared.a\n\ | ||
path-include=/usr/lib/gcc/x86_64-linux-gnu/11/libgcc.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libmvec_nonshared.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread-2.0.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread_nonshared.a\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-static-libraries | ||
|
||
RUN echo "# don't install recommends and suggests packages\n\ | ||
APT::Install-Recommends \"false\";\n\ | ||
APT::Install-Suggests \"false\";\n\ | ||
" > /etc/apt/apt.conf.d/docker-no-suggests | ||
|
||
# add experimental repository to test issue https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037667 | ||
RUN echo "deb http://deb.debian.org/debian experimental main\n\ | ||
" >> /etc/apt/sources.list | ||
|
||
RUN apt-get update --assume-yes | ||
# install experimental g++ to test issue https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1037667 | ||
#RUN apt-get -t=experimental install --assume-yes g++ binutils # broken binutils dependency | ||
RUN apt-get install --assume-yes \ | ||
git \ | ||
g++ \ | ||
make \ | ||
cmake \ | ||
python3 \ | ||
ccache \ | ||
coreutils \ | ||
libpython3-dev \ | ||
libfreetype-dev \ | ||
libglew-dev \ | ||
libopenal-dev \ | ||
libogg-dev \ | ||
libvorbis-dev \ | ||
zlib1g-dev \ | ||
libsdl2-dev \ | ||
mesa-common-dev \ | ||
libpng-dev \ | ||
libboost-all-dev \ | ||
godot3-server \ | ||
libboost-all-dev \ | ||
libjpeg-dev \ | ||
libtiff-dev \ | ||
&& rm -rf \ | ||
/var/lib/apt/lists/* | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
FROM docker.io/debian:stable-slim | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
RUN echo "# don't install documentation inside container\n\ | ||
path-exclude=/usr/share/doc/*\n\ | ||
path-exclude=/usr/share/man/*\n\ | ||
path-exclude=/usr/share/cmake-3.18/Help/*\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-documentation | ||
|
||
RUN echo "# don't install static libraries inside container\n\ | ||
path-exclude=/usr/lib/x86_64-linux-gnu/*.a\n\ | ||
path-exclude=/usr/lib/python3.9/config-x86_64-linux-gnu/*.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libc_nonshared.a\n\ | ||
path-include=/usr/lib/gcc/x86_64-linux-gnu/11/libgcc.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libmvec_nonshared.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread-2.0.a\n\ | ||
path-include=/usr/lib/x86_64-linux-gnu/libpthread_nonshared.a\n\ | ||
" > /etc/dpkg/dpkg.cfg.d/docker-no-static-libraries | ||
|
||
RUN echo "# don't install recommends and suggests packages\n\ | ||
APT::Install-Recommends \"false\";\n\ | ||
APT::Install-Suggests \"false\";\n\ | ||
" > /etc/apt/apt.conf.d/docker-no-suggests | ||
|
||
RUN apt-get update --assume-yes | ||
RUN apt-get install --assume-yes \ | ||
git \ | ||
g++ \ | ||
make \ | ||
cmake \ | ||
python3 \ | ||
ccache \ | ||
coreutils \ | ||
libpython3-dev \ | ||
libfreetype-dev \ | ||
libglew-dev \ | ||
libopenal-dev \ | ||
libogg-dev \ | ||
libvorbis-dev \ | ||
zlib1g-dev \ | ||
libsdl2-dev \ | ||
mesa-common-dev \ | ||
libpng-dev \ | ||
libboost-all-dev \ | ||
godot3-server \ | ||
libboost-all-dev \ | ||
libjpeg-dev \ | ||
libtiff-dev \ | ||
&& rm -rf \ | ||
/var/lib/apt/lists/* | ||
|
2 changes: 1 addition & 1 deletion
2
.github/ubuntu-22.10/Dockerfile → .github/ubuntu-23.04/Dockerfile
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM docker.io/ubuntu:kinetic | ||
FROM docker.io/ubuntu:lunar | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
|
||
|
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
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
Oops, something went wrong.