-
-
Notifications
You must be signed in to change notification settings - Fork 450
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add macOS, Windows, & Ubuntu 22.04 Qt6 builds (#4522)
Co-authored-by: Rasmus Karlsson <[email protected]>
- Loading branch information
Showing
7 changed files
with
157 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
ARG UBUNTU_VERSION=22.04 | ||
|
||
FROM ubuntu:$UBUNTU_VERSION | ||
|
||
ARG QT_VERSION=6.2.4 | ||
ARG BUILD_WITH_QT6=ON | ||
|
||
ENV TZ=UTC | ||
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone | ||
|
||
RUN apt-get update && apt-get -y install --no-install-recommends \ | ||
cmake \ | ||
virtualenv \ | ||
rapidjson-dev \ | ||
libfuse2 \ | ||
libssl-dev \ | ||
libboost-dev \ | ||
libxcb-randr0-dev \ | ||
libboost-system-dev \ | ||
libboost-filesystem-dev \ | ||
libpulse-dev \ | ||
libxkbcommon-x11-0 \ | ||
build-essential \ | ||
libgl1-mesa-dev \ | ||
libxcb-icccm4 \ | ||
libxcb-image0 \ | ||
libxcb-keysyms1 \ | ||
libxcb-render-util0 \ | ||
libxcb-xinerama0 \ | ||
libfontconfig1-dev | ||
|
||
RUN apt-get -y install \ | ||
git \ | ||
lsb-release \ | ||
python3-pip && \ | ||
apt-get clean all | ||
|
||
# Install Qt as we do in CI | ||
|
||
RUN pip3 install -U pip && \ | ||
pip3 install aqtinstall && \ | ||
aqt install-qt linux desktop $QT_VERSION -O /opt/qt --modules qt5compat | ||
|
||
ADD . /src | ||
|
||
RUN mkdir /src/build | ||
|
||
# cmake | ||
RUN cd /src/build && \ | ||
CXXFLAGS=-fno-sized-deallocation cmake \ | ||
-DBUILD_WITH_QT6=$BUILD_WITH_QT6 \ | ||
-DCMAKE_INSTALL_PREFIX=appdir/usr/ \ | ||
-DCMAKE_PREFIX_PATH=/opt/qt/$QT_VERSION/gcc_64/lib/cmake \ | ||
-DBUILD_WITH_QTKEYCHAIN=OFF \ | ||
.. | ||
|
||
# build | ||
RUN cd /src/build && \ | ||
make -j8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ARG UBUNTU_VERSION=22.04 | ||
|
||
FROM chatterino-ubuntu-$UBUNTU_VERSION-qt6-build | ||
|
||
# In CI, this is set from the aqtinstall action | ||
ENV Qt6_DIR=/opt/qt/6.2.4/gcc_64 | ||
|
||
WORKDIR /src/build | ||
|
||
ADD .CI /src/.CI | ||
|
||
# Install dependencies necessary for AppImage packaging | ||
RUN apt-get update && apt-get -y install --no-install-recommends \ | ||
curl \ | ||
libxcb-shape0 \ | ||
libfontconfig1 \ | ||
file | ||
|
||
# package deb | ||
RUN ./../.CI/CreateUbuntuDeb.sh | ||
|
||
# package appimage | ||
RUN ./../.CI/CreateAppImage.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
strategy: | ||
matrix: | ||
os: [windows-latest, macos-latest] | ||
qt-version: [5.15.2, 5.12.12] | ||
qt-version: [5.15.2, 6.5.0] | ||
pch: [true] | ||
force-lto: [false] | ||
plugins: [false] | ||
|
@@ -190,7 +190,7 @@ jobs: | |
nmake /S /NOLOGO crashpad_handler | ||
mkdir Chatterino2/crashpad | ||
cp bin/crashpad/crashpad_handler.exe Chatterino2/crashpad/crashpad_handler.exe | ||
7z a bin/chatterino.pdb.7z bin/chatterino.pdb | ||
7z a bin/chatterino-Qt-${{ matrix.qt-version }}.pdb.7z bin/chatterino.pdb | ||
- name: Package (windows) | ||
if: startsWith(matrix.os, 'windows') | ||
|
@@ -199,21 +199,21 @@ jobs: | |
windeployqt bin/chatterino.exe --release --no-compiler-runtime --no-translations --no-opengl-sw --dir Chatterino2/ | ||
cp bin/chatterino.exe Chatterino2/ | ||
echo nightly > Chatterino2/modes | ||
7z a chatterino-windows-x86-64.zip Chatterino2/ | ||
7z a chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip Chatterino2/ | ||
- name: Upload artifact (Windows - binary) | ||
if: startsWith(matrix.os, 'windows') && matrix.skip_artifact != 'yes' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: chatterino-windows-x86-64-${{ matrix.qt-version }}.zip | ||
path: build/chatterino-windows-x86-64.zip | ||
name: chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip | ||
path: build/chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip | ||
|
||
- name: Upload artifact (Windows - symbols) | ||
if: startsWith(matrix.os, 'windows') && matrix.skip_artifact != 'yes' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: chatterino-windows-x86-64-${{ matrix.qt-version }}-symbols.pdb.7z | ||
path: build/bin/chatterino.pdb.7z | ||
name: chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}-symbols.pdb.7z | ||
path: build/bin/chatterino-Qt-${{ matrix.qt-version }}.pdb.7z | ||
|
||
- name: Clean Conan cache | ||
if: startsWith(matrix.os, 'windows') | ||
|
@@ -341,15 +341,15 @@ jobs: | |
pwd | ||
ls -la build || true | ||
cd build | ||
sh ./../.CI/CreateDMG.sh | ||
sh ./../.CI/CreateDMG.sh ${{ matrix.qt-version }} | ||
shell: bash | ||
|
||
- name: Upload artifact (MacOS) | ||
if: startsWith(matrix.os, 'macos') | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: chatterino-osx-${{ matrix.qt-version }}.dmg | ||
path: build/chatterino-osx.dmg | ||
name: chatterino-osx-Qt-${{ matrix.qt-version }}.dmg | ||
path: build/chatterino-osx-Qt-${{ matrix.qt-version }}.dmg | ||
create-release: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|
@@ -361,12 +361,22 @@ jobs: | |
fetch-depth: 0 # allows for tags access | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-windows-x86-64-5.15.2.zip | ||
name: chatterino-windows-x86-64-Qt-5.15.2.zip | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-windows-x86-64-5.15.2-symbols.pdb.7z | ||
name: chatterino-windows-x86-64-Qt-5.15.2-symbols.pdb.7z | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-windows-x86-Qt-64-6.5.0.zip | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-windows-x86-64-Qt-6.5.0-symbols.pdb.7z | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v3 | ||
|
@@ -386,14 +396,30 @@ jobs: | |
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-osx-5.15.2.dmg | ||
name: Chatterino-ubuntu-22.04-Qt-6.2.4.deb | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-osx-Qt-5.15.2.dmg | ||
path: release-artifacts/ | ||
|
||
- uses: actions/download-artifact@v3 | ||
with: | ||
name: chatterino-osx-Qt-6.5.0.dmg | ||
path: release-artifacts/ | ||
|
||
- name: Copy flatpakref | ||
run: | | ||
cp .CI/chatterino-nightly.flatpakref release-artifacts/ | ||
shell: bash | ||
|
||
- name: Mark experimental | ||
run: | | ||
for file in *; do mv -n "$file" "$(echo $file | sed 's/\(6\(\.[[:digit:]]\)\{2\}\)/\1-EXPERIMENTAL/g')"; done | ||
working-directory: release-artifacts | ||
shell: bash | ||
|
||
- name: Create release | ||
uses: ncipollo/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters