Add docker based gitlab ci config

This commit is contained in:
Jan
2021-03-04 07:45:29 -08:00
parent 6937e7441c
commit ba699d36df
7 changed files with 38 additions and 5 deletions

6
ci/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM ubuntu:focal
RUN /bin/sh -c "dpkg --add-architecture i386"
RUN /bin/sh -c "apt-get update && apt-get upgrade -y && apt-get install -y git make g++ gcc-9 g++-9 gcc-9-multilib g++-9-multilib"
CMD ["/bin/bash"]