2019-12-28 14:54:03 +01:00
|
|
|
---
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2020-12-13 13:14:18 +01:00
|
|
|
branches:
|
|
|
|
- master
|
2019-12-28 14:54:03 +01:00
|
|
|
pull_request:
|
2022-06-14 14:48:21 +02:00
|
|
|
workflow_dispatch:
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2022-12-02 20:30:28 +01:00
|
|
|
concurrency:
|
2022-05-21 11:33:21 +02:00
|
|
|
group: build-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-12-24 18:42:59 +01:00
|
|
|
env:
|
|
|
|
C2_ENABLE_LTO: ${{ github.ref == 'refs/heads/master' }}
|
2023-02-16 14:56:20 +01:00
|
|
|
CHATTERINO_REQUIRE_CLEAN_GIT: On
|
2023-02-19 20:19:18 +01:00
|
|
|
C2_BUILD_WITH_QT6: Off
|
2023-04-04 21:29:49 +02:00
|
|
|
# Last known good conan version
|
|
|
|
# 2.0.3 has a bug on Windows (conan-io/conan#13606)
|
|
|
|
CONAN_VERSION: 2.0.2
|
2022-12-24 18:42:59 +01:00
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
jobs:
|
|
|
|
build:
|
2023-05-08 14:08:43 +02:00
|
|
|
name: "Build ${{ matrix.os }}, Qt ${{ matrix.qt-version }} (LTO:${{ matrix.force-lto }}, crashpad:${{ matrix.skip-crashpad && 'off' || 'on' }})"
|
2019-12-28 14:54:03 +01:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-02-11 23:50:01 +01:00
|
|
|
os: [windows-latest, macos-latest]
|
2023-04-15 13:25:51 +02:00
|
|
|
qt-version: [5.15.2, 6.5.0]
|
2022-12-24 18:42:59 +01:00
|
|
|
force-lto: [false]
|
2023-04-02 15:31:53 +02:00
|
|
|
plugins: [false]
|
2023-05-08 14:08:43 +02:00
|
|
|
skip-artifact: [false]
|
|
|
|
skip-crashpad: [false]
|
|
|
|
clang-tidy-review: [false]
|
2021-03-28 16:58:51 +02:00
|
|
|
include:
|
2023-02-11 23:50:01 +01:00
|
|
|
# Ubuntu 20.04, Qt 5.12
|
2022-12-07 12:53:50 +01:00
|
|
|
- os: ubuntu-20.04
|
2023-02-11 23:50:01 +01:00
|
|
|
qt-version: 5.12.12
|
|
|
|
force-lto: false
|
2023-05-08 14:08:43 +02:00
|
|
|
plugins: false
|
|
|
|
skip-artifact: false
|
|
|
|
skip-crashpad: false
|
|
|
|
clang-tidy-review: false
|
2023-02-11 23:50:01 +01:00
|
|
|
# Ubuntu 22.04, Qt 5.15
|
|
|
|
- os: ubuntu-22.04
|
|
|
|
qt-version: 5.15.2
|
|
|
|
force-lto: false
|
2023-05-08 14:08:43 +02:00
|
|
|
plugins: false
|
|
|
|
skip-artifact: false
|
|
|
|
skip-crashpad: false
|
|
|
|
clang-tidy-review: true
|
|
|
|
# Ubuntu 22.04, Qt 6.2.4 - tests LTO & plugins
|
2023-02-19 20:19:18 +01:00
|
|
|
- os: ubuntu-22.04
|
|
|
|
qt-version: 6.2.4
|
2022-12-24 18:42:59 +01:00
|
|
|
force-lto: true
|
2023-04-02 15:31:53 +02:00
|
|
|
plugins: true
|
2023-05-08 14:08:43 +02:00
|
|
|
skip-artifact: false
|
|
|
|
skip-crashpad: false
|
|
|
|
clang-tidy-review: false
|
2023-02-12 20:36:58 +01:00
|
|
|
# Test for disabling crashpad on Windows
|
|
|
|
- os: windows-latest
|
|
|
|
qt-version: 5.15.2
|
2023-05-08 14:08:43 +02:00
|
|
|
force-lto: false
|
|
|
|
plugins: false
|
|
|
|
skip-artifact: true
|
|
|
|
skip-crashpad: true
|
|
|
|
clang-tidy-review: false
|
2023-04-02 15:31:53 +02:00
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
fail-fast: false
|
|
|
|
|
|
|
|
steps:
|
2022-12-24 18:42:59 +01:00
|
|
|
- name: Force LTO
|
2023-05-08 14:08:43 +02:00
|
|
|
if: matrix.force-lto
|
2022-12-24 18:42:59 +01:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
echo "C2_ENABLE_LTO=ON" >> "$GITHUB_ENV"
|
2022-12-24 18:42:59 +01:00
|
|
|
shell: bash
|
|
|
|
|
2023-04-02 15:31:53 +02:00
|
|
|
- name: Enable plugin support
|
2023-05-08 14:08:43 +02:00
|
|
|
if: matrix.plugins
|
2023-04-02 15:31:53 +02:00
|
|
|
run: |
|
|
|
|
echo "C2_PLUGINS=ON" >> "$GITHUB_ENV"
|
|
|
|
shell: bash
|
|
|
|
|
2023-02-12 20:36:58 +01:00
|
|
|
- name: Set Crashpad
|
2023-05-08 14:08:43 +02:00
|
|
|
if: matrix.skip-crashpad == false
|
2023-02-12 20:36:58 +01:00
|
|
|
run: |
|
|
|
|
echo "C2_ENABLE_CRASHPAD=ON" >> "$GITHUB_ENV"
|
|
|
|
shell: bash
|
|
|
|
|
2022-03-04 11:26:45 +01:00
|
|
|
- name: Set environment variables for windows-latest
|
|
|
|
if: matrix.os == 'windows-latest'
|
2021-03-28 16:58:51 +02:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
echo "vs_version=2022" >> "$GITHUB_ENV"
|
2021-03-28 16:58:51 +02:00
|
|
|
shell: bash
|
|
|
|
|
2023-02-19 20:19:18 +01:00
|
|
|
- name: Set BUILD_WITH_QT6
|
|
|
|
if: startsWith(matrix.qt-version, '6.')
|
|
|
|
run: |
|
|
|
|
echo "C2_BUILD_WITH_QT6=ON" >> "$GITHUB_ENV"
|
|
|
|
shell: bash
|
|
|
|
|
2022-03-04 14:49:51 +01:00
|
|
|
- uses: actions/checkout@v3
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2023-02-12 20:36:58 +01:00
|
|
|
submodules: recursive
|
2023-01-15 17:27:41 +01:00
|
|
|
fetch-depth: 0 # allows for tags access
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2023-02-19 20:19:18 +01:00
|
|
|
- name: Install Qt5
|
|
|
|
if: startsWith(matrix.qt-version, '5.')
|
2023-05-21 23:47:53 +02:00
|
|
|
uses: jurplel/install-qt-action@v3.2.1
|
2023-02-19 20:19:18 +01:00
|
|
|
with:
|
|
|
|
cache: true
|
|
|
|
cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2
|
|
|
|
version: ${{ matrix.qt-version }}
|
|
|
|
|
|
|
|
- name: Install Qt6
|
|
|
|
if: startsWith(matrix.qt-version, '6.')
|
2023-05-21 23:47:53 +02:00
|
|
|
uses: jurplel/install-qt-action@v3.2.1
|
2021-01-10 13:23:34 +01:00
|
|
|
with:
|
2022-11-03 20:03:16 +01:00
|
|
|
cache: true
|
2023-02-16 14:56:20 +01:00
|
|
|
cache-key-prefix: ${{ runner.os }}-QtCache-${{ matrix.qt-version }}-v2
|
2023-04-17 15:06:15 +02:00
|
|
|
modules: qt5compat qtimageformats
|
2021-01-10 13:23:34 +01:00
|
|
|
version: ${{ matrix.qt-version }}
|
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
# WINDOWS
|
2023-04-04 21:29:49 +02:00
|
|
|
- name: Enable Developer Command Prompt (Windows)
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
uses: ilammy/msvc-dev-cmd@v1.12.1
|
|
|
|
|
2023-04-02 12:48:22 +02:00
|
|
|
- name: Setup conan variables (Windows)
|
2020-01-23 09:21:01 +01:00
|
|
|
if: startsWith(matrix.os, 'windows')
|
2023-04-02 12:48:22 +02:00
|
|
|
run: |
|
|
|
|
"C2_USE_OPENSSL3=$(if ($Env:C2_BUILD_WITH_QT6 -eq "on") { "True" } else { "False" })" >> "$Env:GITHUB_ENV"
|
|
|
|
"C2_CONAN_CACHE_SUFFIX=$(if ($Env:C2_BUILD_WITH_QT6 -eq "on") { "-QT6" } else { "`" })" >> "$Env:GITHUB_ENV"
|
|
|
|
shell: powershell
|
2022-03-04 11:26:45 +01:00
|
|
|
|
2023-04-04 21:29:49 +02:00
|
|
|
- name: Cache conan packages (Windows)
|
2022-03-04 11:26:45 +01:00
|
|
|
if: startsWith(matrix.os, 'windows')
|
2022-03-22 12:50:52 +01:00
|
|
|
uses: actions/cache@v3
|
2022-03-04 11:26:45 +01:00
|
|
|
with:
|
2023-04-02 12:48:22 +02:00
|
|
|
key: ${{ runner.os }}-conan-user-${{ hashFiles('**/conanfile.py') }}${{ env.C2_CONAN_CACHE_SUFFIX }}
|
|
|
|
path: ~/.conan2/
|
2020-01-23 09:21:01 +01:00
|
|
|
|
2023-04-04 21:29:49 +02:00
|
|
|
- name: Install Conan (Windows)
|
2019-12-28 14:54:03 +01:00
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |
|
2023-04-04 21:29:49 +02:00
|
|
|
python3 -c "import site; import sys; print(f'{site.USER_BASE}\\Python{sys.version_info.major}{sys.version_info.minor}\\Scripts')" >> "$GITHUB_PATH"
|
|
|
|
pip3 install --user "conan==${{ env.CONAN_VERSION }}"
|
|
|
|
shell: powershell
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2023-01-29 14:10:39 +01:00
|
|
|
- name: Setup Conan (Windows)
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |
|
2023-04-02 12:48:22 +02:00
|
|
|
conan --version
|
|
|
|
conan profile detect -f
|
|
|
|
shell: powershell
|
2023-01-29 14:10:39 +01:00
|
|
|
|
2023-04-04 21:29:49 +02:00
|
|
|
- name: Install dependencies (Windows)
|
2022-07-23 14:04:29 +02:00
|
|
|
if: startsWith(matrix.os, 'windows')
|
2021-03-28 16:58:51 +02:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2023-04-02 12:48:22 +02:00
|
|
|
conan install .. `
|
|
|
|
-s build_type=RelWithDebInfo `
|
|
|
|
-c tools.cmake.cmaketoolchain:generator="NMake Makefiles" `
|
|
|
|
-b missing `
|
|
|
|
--output-folder=. `
|
|
|
|
-o with_openssl3="$Env:C2_USE_OPENSSL3"
|
2023-04-04 21:29:49 +02:00
|
|
|
shell: powershell
|
|
|
|
|
|
|
|
- name: Build (Windows)
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
2023-05-08 14:08:43 +02:00
|
|
|
shell: pwsh
|
2023-04-04 21:29:49 +02:00
|
|
|
run: |
|
|
|
|
cd build
|
2023-01-15 17:27:41 +01:00
|
|
|
cmake `
|
|
|
|
-G"NMake Makefiles" `
|
2023-02-12 20:36:58 +01:00
|
|
|
-DCMAKE_BUILD_TYPE=RelWithDebInfo `
|
2023-01-29 14:10:39 +01:00
|
|
|
-DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake" `
|
2023-05-08 14:08:43 +02:00
|
|
|
-DUSE_PRECOMPILED_HEADERS=OFF `
|
2023-02-12 20:36:58 +01:00
|
|
|
-DBUILD_WITH_CRASHPAD="$Env:C2_ENABLE_CRASHPAD" `
|
2023-01-15 17:27:41 +01:00
|
|
|
-DCHATTERINO_LTO="$Env:C2_ENABLE_LTO" `
|
2023-04-02 15:31:53 +02:00
|
|
|
-DCHATTERINO_PLUGINS="$Env:C2_PLUGINS" `
|
2023-02-19 20:19:18 +01:00
|
|
|
-DBUILD_WITH_QT6="$Env:C2_BUILD_WITH_QT6" `
|
2023-01-15 17:27:41 +01:00
|
|
|
..
|
|
|
|
set cl=/MP
|
|
|
|
nmake /S /NOLOGO
|
2023-02-12 20:36:58 +01:00
|
|
|
|
|
|
|
- name: Build crashpad (Windows)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'windows') && !matrix.skip-crashpad
|
|
|
|
shell: pwsh
|
2023-02-12 20:36:58 +01:00
|
|
|
run: |
|
|
|
|
cd build
|
|
|
|
set cl=/MP
|
|
|
|
nmake /S /NOLOGO crashpad_handler
|
|
|
|
mkdir Chatterino2/crashpad
|
|
|
|
cp bin/crashpad/crashpad_handler.exe Chatterino2/crashpad/crashpad_handler.exe
|
2023-04-15 13:25:51 +02:00
|
|
|
7z a bin/chatterino-Qt-${{ matrix.qt-version }}.pdb.7z bin/chatterino.pdb
|
2023-02-12 20:36:58 +01:00
|
|
|
|
|
|
|
- name: Package (windows)
|
|
|
|
if: startsWith(matrix.os, 'windows')
|
|
|
|
run: |
|
|
|
|
cd build
|
2023-01-15 17:27:41 +01:00
|
|
|
windeployqt bin/chatterino.exe --release --no-compiler-runtime --no-translations --no-opengl-sw --dir Chatterino2/
|
|
|
|
cp bin/chatterino.exe Chatterino2/
|
|
|
|
echo nightly > Chatterino2/modes
|
2023-04-15 13:25:51 +02:00
|
|
|
7z a chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip Chatterino2/
|
2021-03-14 17:25:32 +01:00
|
|
|
|
2023-02-12 20:36:58 +01:00
|
|
|
- name: Upload artifact (Windows - binary)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'windows') && !matrix.skip-artifact
|
2022-03-04 11:06:15 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2023-04-15 13:25:51 +02:00
|
|
|
name: chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip
|
|
|
|
path: build/chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}.zip
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2023-02-12 20:36:58 +01:00
|
|
|
- name: Upload artifact (Windows - symbols)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'windows') && !matrix.skip-artifact
|
2023-02-12 20:36:58 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-04-15 13:25:51 +02:00
|
|
|
name: chatterino-windows-x86-64-Qt-${{ matrix.qt-version }}-symbols.pdb.7z
|
|
|
|
path: build/bin/chatterino-Qt-${{ matrix.qt-version }}.pdb.7z
|
2023-02-12 20:36:58 +01:00
|
|
|
|
2023-04-02 12:48:22 +02:00
|
|
|
- name: Clean Conan cache
|
2022-03-04 11:26:45 +01:00
|
|
|
if: startsWith(matrix.os, 'windows')
|
2023-04-02 12:48:22 +02:00
|
|
|
run: conan cache clean --source --build --download "*"
|
2022-03-04 11:26:45 +01:00
|
|
|
shell: bash
|
2022-12-02 20:30:28 +01:00
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
# LINUX
|
|
|
|
- name: Install dependencies (Ubuntu)
|
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2020-12-05 14:31:28 +01:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get -y install \
|
|
|
|
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
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2023-02-11 23:50:01 +01:00
|
|
|
- name: Apply Qt patches (Ubuntu)
|
|
|
|
if: startsWith(matrix.os, 'ubuntu') && startsWith(matrix.qt-version, '5.')
|
|
|
|
run: |
|
|
|
|
patch "$Qt5_DIR/include/QtConcurrent/qtconcurrentthreadengine.h" .patches/qt5-on-newer-gcc.patch
|
|
|
|
shell: bash
|
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
- name: Build (Ubuntu)
|
2022-07-23 14:04:29 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2021-03-28 16:58:51 +02:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
2023-02-11 23:50:01 +01:00
|
|
|
CXXFLAGS=-fno-sized-deallocation cmake \
|
2023-01-15 17:27:41 +01:00
|
|
|
-DCMAKE_INSTALL_PREFIX=appdir/usr/ \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DPAJLADA_SETTINGS_USE_BOOST_FILESYSTEM=On \
|
2023-05-08 14:08:43 +02:00
|
|
|
-DUSE_PRECOMPILED_HEADERS=OFF \
|
2023-01-15 17:27:41 +01:00
|
|
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=On \
|
|
|
|
-DCHATTERINO_LTO="$C2_ENABLE_LTO" \
|
2023-04-02 15:31:53 +02:00
|
|
|
-DCHATTERINO_PLUGINS="$C2_PLUGINS" \
|
2023-02-19 20:19:18 +01:00
|
|
|
-DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \
|
2023-01-15 17:27:41 +01:00
|
|
|
..
|
|
|
|
make -j"$(nproc)"
|
2021-03-28 16:58:51 +02:00
|
|
|
shell: bash
|
|
|
|
|
2022-07-31 16:16:22 +02:00
|
|
|
- name: clang-tidy review
|
2023-05-08 15:29:58 +02:00
|
|
|
if: matrix.clang-tidy-review && github.event_name == 'pull_request'
|
2023-05-23 10:43:31 +02:00
|
|
|
uses: ZedThree/clang-tidy-review@v0.13.1
|
2022-07-31 16:16:22 +02:00
|
|
|
with:
|
2023-05-21 19:42:40 +02:00
|
|
|
build_dir: build-clang-tidy
|
2023-01-15 17:27:41 +01:00
|
|
|
config_file: ".clang-tidy"
|
2022-08-28 13:32:07 +02:00
|
|
|
split_workflow: true
|
2023-05-24 23:47:03 +02:00
|
|
|
exclude: "lib/*"
|
2023-05-21 19:42:40 +02:00
|
|
|
cmake_command: >-
|
|
|
|
cmake -S. -Bbuild-clang-tidy
|
|
|
|
-DCMAKE_BUILD_TYPE=Release
|
|
|
|
-DPAJLADA_SETTINGS_USE_BOOST_FILESYSTEM=On
|
|
|
|
-DUSE_PRECOMPILED_HEADERS=OFF
|
|
|
|
-DCMAKE_EXPORT_COMPILE_COMMANDS=On
|
|
|
|
-DCHATTERINO_LTO=Off
|
|
|
|
-DCHATTERINO_PLUGINS=On
|
|
|
|
-DBUILD_WITH_QT6=Off
|
2023-05-24 23:47:03 +02:00
|
|
|
-DBUILD_TESTS=On
|
|
|
|
-DBUILD_BENCHMARKS=On
|
2023-05-21 19:42:40 +02:00
|
|
|
apt_packages: >-
|
|
|
|
qttools5-dev, qt5-image-formats-plugins, libqt5svg5-dev,
|
|
|
|
libsecret-1-dev,
|
|
|
|
libboost-dev, libboost-system-dev, libboost-filesystem-dev,
|
|
|
|
libssl-dev,
|
2023-05-24 23:47:03 +02:00
|
|
|
rapidjson-dev,
|
|
|
|
libbenchmark-dev
|
2022-08-28 13:32:07 +02:00
|
|
|
|
2023-03-27 12:42:16 +02:00
|
|
|
- name: clang-tidy-review upload
|
2023-05-08 15:29:58 +02:00
|
|
|
if: matrix.clang-tidy-review && github.event_name == 'pull_request'
|
2023-05-23 10:43:31 +02:00
|
|
|
uses: ZedThree/clang-tidy-review/upload@v0.13.1
|
2022-07-31 16:16:22 +02:00
|
|
|
|
2021-07-17 13:28:45 +02:00
|
|
|
- name: Package - AppImage (Ubuntu)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu-20.04') && !matrix.skip-artifact
|
2019-12-28 14:54:03 +01:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
cd build
|
|
|
|
sh ./../.CI/CreateAppImage.sh
|
2019-12-28 14:54:03 +01:00
|
|
|
shell: bash
|
|
|
|
|
2021-07-17 13:28:45 +02:00
|
|
|
- name: Package - .deb (Ubuntu)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && !matrix.skip-artifact
|
2021-07-17 13:28:45 +02:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
cd build
|
|
|
|
sh ./../.CI/CreateUbuntuDeb.sh
|
2021-07-17 13:28:45 +02:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Upload artifact - AppImage (Ubuntu)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu-20.04') && !matrix.skip-artifact
|
2022-03-04 11:06:15 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2022-07-23 14:04:29 +02:00
|
|
|
name: Chatterino-x86_64-${{ matrix.qt-version }}.AppImage
|
2019-12-28 14:54:03 +01:00
|
|
|
path: build/Chatterino-x86_64.AppImage
|
|
|
|
|
2021-07-17 13:28:45 +02:00
|
|
|
- name: Upload artifact - .deb (Ubuntu)
|
2023-05-08 14:08:43 +02:00
|
|
|
if: startsWith(matrix.os, 'ubuntu') && !matrix.skip-artifact
|
2022-03-04 11:06:15 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2021-07-17 13:28:45 +02:00
|
|
|
with:
|
2023-02-11 23:50:01 +01:00
|
|
|
name: Chatterino-${{ matrix.os }}-Qt-${{ matrix.qt-version }}.deb
|
2023-02-13 10:34:40 +01:00
|
|
|
path: build/Chatterino-${{ matrix.os }}-x86_64.deb
|
2021-07-17 13:28:45 +02:00
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
# MACOS
|
|
|
|
- name: Install dependencies (MacOS)
|
|
|
|
if: startsWith(matrix.os, 'macos')
|
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
brew install boost openssl rapidjson p7zip create-dmg cmake tree
|
2019-12-28 14:54:03 +01:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Build (MacOS)
|
2022-07-23 14:04:29 +02:00
|
|
|
if: startsWith(matrix.os, 'macos')
|
2021-03-28 16:58:51 +02:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 \
|
|
|
|
-DOPENSSL_ROOT_DIR=/usr/local/opt/openssl \
|
2023-05-08 14:08:43 +02:00
|
|
|
-DUSE_PRECOMPILED_HEADERS=OFF \
|
2023-01-15 17:27:41 +01:00
|
|
|
-DCHATTERINO_LTO="$C2_ENABLE_LTO" \
|
2023-04-02 15:31:53 +02:00
|
|
|
-DCHATTERINO_PLUGINS="$C2_PLUGINS" \
|
2023-02-19 20:19:18 +01:00
|
|
|
-DBUILD_WITH_QT6="$C2_BUILD_WITH_QT6" \
|
2023-01-15 17:27:41 +01:00
|
|
|
..
|
|
|
|
make -j"$(sysctl -n hw.logicalcpu)"
|
2021-03-28 16:58:51 +02:00
|
|
|
shell: bash
|
|
|
|
|
2019-12-28 14:54:03 +01:00
|
|
|
- name: Package (MacOS)
|
|
|
|
if: startsWith(matrix.os, 'macos')
|
2023-04-29 16:07:20 +02:00
|
|
|
env:
|
|
|
|
OUTPUT_DMG_PATH: chatterino-macos-Qt-${{ matrix.qt-version}}.dmg
|
2019-12-28 14:54:03 +01:00
|
|
|
run: |
|
2023-01-15 17:27:41 +01:00
|
|
|
ls -la
|
|
|
|
pwd
|
|
|
|
ls -la build || true
|
|
|
|
cd build
|
2023-04-29 16:07:20 +02:00
|
|
|
./../.CI/MacDeploy.sh
|
|
|
|
./../.CI/CreateDMG.sh
|
2019-12-28 14:54:03 +01:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: Upload artifact (MacOS)
|
|
|
|
if: startsWith(matrix.os, 'macos')
|
2022-03-04 11:06:15 +01:00
|
|
|
uses: actions/upload-artifact@v3
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2023-04-16 21:05:51 +02:00
|
|
|
name: chatterino-macos-Qt-${{ matrix.qt-version }}.dmg
|
|
|
|
path: build/chatterino-macos-Qt-${{ matrix.qt-version }}.dmg
|
2019-12-28 14:54:03 +01:00
|
|
|
create-release:
|
|
|
|
needs: build
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
if: (github.event_name == 'push' && github.ref == 'refs/heads/master')
|
|
|
|
|
|
|
|
steps:
|
2023-02-13 20:11:48 +01:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0 # allows for tags access
|
2023-04-15 14:23:33 +02:00
|
|
|
|
2023-02-13 10:34:40 +01:00
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Ubuntu 22.04 Qt6.2.4 deb
|
2023-02-13 10:34:40 +01:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Chatterino-ubuntu-22.04-Qt-6.2.4.deb
|
2023-04-15 13:25:51 +02:00
|
|
|
path: release-artifacts/
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-15 14:23:33 +02:00
|
|
|
name: Windows Qt6.5.0
|
2023-04-15 13:25:51 +02:00
|
|
|
with:
|
2023-04-15 14:23:33 +02:00
|
|
|
name: chatterino-windows-x86-64-Qt-6.5.0.zip
|
2023-04-15 13:25:51 +02:00
|
|
|
path: release-artifacts/
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-15 14:23:33 +02:00
|
|
|
name: Windows Qt6.5.0 symbols
|
2023-04-15 13:25:51 +02:00
|
|
|
with:
|
|
|
|
name: chatterino-windows-x86-64-Qt-6.5.0-symbols.pdb.7z
|
2023-02-13 10:34:40 +01:00
|
|
|
path: release-artifacts/
|
|
|
|
|
2022-03-04 15:18:06 +01:00
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Windows Qt5.15.2
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: chatterino-windows-x86-64-Qt-5.15.2.zip
|
2022-11-08 23:07:44 +01:00
|
|
|
path: release-artifacts/
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2022-03-04 15:18:06 +01:00
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Windows Qt5.15 symbols
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: chatterino-windows-x86-64-Qt-5.15.2-symbols.pdb.7z
|
2023-02-11 23:50:01 +01:00
|
|
|
path: release-artifacts/
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Linux Qt5.12.12 AppImage
|
2023-02-11 23:50:01 +01:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Chatterino-x86_64-5.12.12.AppImage
|
2022-11-08 23:07:44 +01:00
|
|
|
path: release-artifacts/
|
2021-07-17 13:28:45 +02:00
|
|
|
|
2022-03-04 15:18:06 +01:00
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Ubuntu 20.04 Qt5.12.12 deb
|
2021-07-17 13:28:45 +02:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Chatterino-ubuntu-20.04-Qt-5.12.12.deb
|
2023-04-15 13:25:51 +02:00
|
|
|
path: release-artifacts/
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Ubuntu 22.04 Qt5.15.2 deb
|
2023-04-15 13:25:51 +02:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: Chatterino-ubuntu-22.04-Qt-5.15.2.deb
|
2023-04-15 13:25:51 +02:00
|
|
|
path: release-artifacts/
|
|
|
|
|
|
|
|
- uses: actions/download-artifact@v3
|
2023-04-17 09:59:25 +02:00
|
|
|
name: macOS x86_64 Qt5.15.2 dmg
|
2023-04-15 13:25:51 +02:00
|
|
|
with:
|
2023-04-17 09:59:25 +02:00
|
|
|
name: chatterino-macos-Qt-5.15.2.dmg
|
2022-11-08 23:07:44 +01:00
|
|
|
path: release-artifacts/
|
2019-12-28 14:54:03 +01:00
|
|
|
|
2023-02-17 21:01:47 +01:00
|
|
|
- name: Copy flatpakref
|
|
|
|
run: |
|
|
|
|
cp .CI/chatterino-nightly.flatpakref release-artifacts/
|
|
|
|
shell: bash
|
|
|
|
|
2023-05-08 14:08:43 +02:00
|
|
|
- name: Rename artifacts
|
|
|
|
run: |
|
|
|
|
ls -l
|
|
|
|
# Rename the macos build to indicate that it's for macOS 10.15 users
|
|
|
|
mv chatterino-macos-Qt-5.15.2.dmg Chatterino-macOS-10.15.dmg
|
|
|
|
|
|
|
|
# Mark all Qt6 builds as EXPERIMENTAL
|
|
|
|
mv Chatterino-ubuntu-22.04-x86_64.deb EXPERIMENTAL-Chatterino-ubuntu-22.04-Qt-6.2.4.deb
|
|
|
|
mv chatterino-windows-x86-64-Qt-6.5.0.zip EXPERIMENTAL-chatterino-windows-x86-64-Qt-6.5.0.zip
|
|
|
|
mv chatterino-Qt-6.5.0.pdb.7z EXPERIMENTAL-chatterino-Qt-6.5.0.pdb.7z
|
|
|
|
working-directory: release-artifacts
|
|
|
|
shell: bash
|
|
|
|
|
2022-11-08 23:07:44 +01:00
|
|
|
- name: Create release
|
2022-12-17 12:26:47 +01:00
|
|
|
uses: ncipollo/release-action@v1.12.0
|
2019-12-28 14:54:03 +01:00
|
|
|
with:
|
2023-04-29 16:07:20 +02:00
|
|
|
replacesArtifacts: true
|
2022-11-08 23:07:44 +01:00
|
|
|
allowUpdates: true
|
|
|
|
artifactErrorsFailBuild: true
|
|
|
|
artifacts: "release-artifacts/*"
|
2022-11-09 15:47:42 +01:00
|
|
|
body: ${{ github.event.head_commit.message }}
|
2022-11-08 23:07:44 +01:00
|
|
|
prerelease: true
|
|
|
|
name: Nightly Release
|
|
|
|
tag: nightly-build
|
2023-02-13 20:11:48 +01:00
|
|
|
|
|
|
|
- name: Update nightly-build tag
|
|
|
|
run: |
|
|
|
|
git tag -f nightly-build
|
|
|
|
git push -f origin nightly-build
|
|
|
|
shell: bash
|