mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
ac6708b3a2
* Tests: Fix InputCompletion tests in Qt6 This is achieved by not checking exact order for certain completion tests * Tests: Use Ubuntu 22.04 for all tests This allows us to be a bit more loose and use more C++20 features in tests * Update dockerfiles
18 lines
343 B
Plaintext
18 lines
343 B
Plaintext
FROM chatterino-ubuntu-22.04-base
|
|
|
|
ADD . /src
|
|
|
|
RUN mkdir /src/build
|
|
|
|
# cmake
|
|
RUN cd /src/build && \
|
|
CXXFLAGS=-fno-sized-deallocation cmake \
|
|
-DCMAKE_INSTALL_PREFIX=appdir/usr/ \
|
|
-DCMAKE_PREFIX_PATH=/opt/qt515/lib/cmake \
|
|
-DBUILD_WITH_QTKEYCHAIN=OFF \
|
|
..
|
|
|
|
# build
|
|
RUN cd /src/build && \
|
|
make -j8
|