Remove cross-compilation dependencies

It makes the github actions workflow take longer and cross-compiled
artifacts are not currently used (nor do they seem to work).
This commit is contained in:
Leroy Hopson 2020-11-21 19:00:40 +07:00
parent 570896b9c0
commit 132ab5d74d
No known key found for this signature in database
GPG key ID: 4D05A4F6CB4E7DEE
3 changed files with 5 additions and 36 deletions

View file

@ -1,14 +1,6 @@
FROM archlinux:20200908
RUN pacman -Sy --needed --noconfirm \
# The following are required to compile for any platform:
git \
scons \
# The following are required to compile for 64-bit Linux:
base-devel \
# The following are required to compile for 32-bit Linux:
multilib-devel \
# The following is required to cross-compile for 32/64-bit Windows:
mingw-w64-gcc \
# The following is required to cross-compile for MacOS:
clang
base-devel
COPY . /src