Skip to content
Snippets Groups Projects
Commit 56d85168 authored by Silas Della Contrada's avatar Silas Della Contrada
Browse files

Added build container for CI

parent 0b0fa9b7
No related branches found
No related tags found
No related merge requests found
FROM wiktorguz/qt6
RUN apt update && apt upgrade -y
RUN apt install -y software-properties-common
RUN add-apt-repository -y ppa:ubuntu-toolchain-r/test && apt update
RUN apt install -y libswscale-dev libswresample-dev libpostproc-dev libavutil-dev libavresample-dev libavformat-dev libavfilter-extra libavfilter-dev libavdevice-dev libavcodec-extra libavcodec-dev ffmpeg git cmake libvulkan-dev gcc-10 gcc-10-base gcc-10-doc g++-10 libopenal-dev
COPY build.sh /home/qt/
CMD ["/home/qt/build.sh"]
#!/bin/bash
git clone https://edugit.org/sdcieo0330/LibAVQt.git
cd LibAVQt
mkdir build && cd build
cmake -DCMAKE_C_COMPILER=/usr/bin/gcc-10 -DCMAKE_CXX_COMPILER=/usr/bin/g++-10 -DCMAKE_BUILD_TYPE=Debug .. && cmake --build . -j4
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment