Skip to content

Commit

Permalink
Merge pull request #1040 from openmultiplayer/amir/ci
Browse files Browse the repository at this point in the history
all my homies hate linux (not the kernel btw, the ecosystem btw) (btw)
  • Loading branch information
AmyrAhmady authored Jan 11, 2025
2 parents 33a24a5 + 5798497 commit ec7d3ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 158 deletions.
144 changes: 0 additions & 144 deletions .github/workflows/release.yml

This file was deleted.

11 changes: 4 additions & 7 deletions docker/build_ubuntu-18.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,7 @@ RUN \
gpg \
wget \
&& \
wget -O- https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | \
gpg --dearmor - | \
tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null && \
echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ bionic main' | \
tee /etc/apt/sources.list.d/kitware.list >/dev/null && \
apt-get update && \
apt-get install -y \
cmake \
ninja-build \
clang-10 \
python3-pip \
Expand All @@ -22,6 +15,10 @@ RUN \
libstdc++6:i386 \
libc6:i386 \
&& \
wget https://cmake.org/files/v3.20/cmake-3.20.6-linux-x86_64.tar.gz && \
tar zxvf cmake-3.20.6-linux-x86_64.tar.gz && \
mv cmake-3.20.6-linux-x86_64 /opt/cmake-3.20.6 && \
ln -sf /opt/cmake-3.20.6/bin/* /usr/bin/ && \
useradd -m user && \
su user -c 'pip3 install --user -v "conan==1.57.0"'

Expand Down
11 changes: 4 additions & 7 deletions docker/build_ubuntu-20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,18 @@ RUN \
gpg \
wget \
&& \
wget -O- https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | \
gpg --dearmor - | \
tee /usr/share/keyrings/kitware-archive-keyring.gpg >/dev/null && \
echo 'deb [signed-by=/usr/share/keyrings/kitware-archive-keyring.gpg] https://apt.kitware.com/ubuntu/ focal main' | \
tee /etc/apt/sources.list.d/kitware.list >/dev/null && \
apt-get update && \
apt-get install -y \
cmake \
ninja-build \
clang-10 \
python3-pip \
gcc-9-multilib \
g++-9-multilib \
libstdc++-10-dev:i386 \
&& \
wget https://cmake.org/files/v3.20/cmake-3.20.6-linux-x86_64.tar.gz && \
tar zxvf cmake-3.20.6-linux-x86_64.tar.gz && \
mv cmake-3.20.6-linux-x86_64 /opt/cmake-3.20.6 && \
ln -sf /opt/cmake-3.20.6/bin/* /usr/bin/ && \
useradd -m user && \
su user -c 'pip3 install --user -v "conan==1.57.0"'

Expand Down

0 comments on commit ec7d3ce

Please sign in to comment.