Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QE3 - Update build - replaced deprecated Node.js version. #988

Merged
merged 2 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/actions/appimage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ runs:

- name: Remove not needed SQL plugins
run: |
rm ${{ env.Qt6_DIR }}/plugins/sqldrivers/libqsqlmimer.so
rm ${{ env.Qt6_DIR }}/plugins/sqldrivers/libqsqlmysql.so
rm ${{ env.Qt6_DIR }}/plugins/sqldrivers/libqsqlodbc.so
rm ${{ env.QT_ROOT_DIR }}/plugins/sqldrivers/libqsqlmimer.so
rm ${{ env.QT_ROOT_DIR }}/plugins/sqldrivers/libqsqlmysql.so
rm ${{ env.QT_ROOT_DIR }}/plugins/sqldrivers/libqsqlodbc.so
shell: bash

- name: Create AppImage
Expand All @@ -54,7 +54,7 @@ runs:
shell: bash

- name: Upload AppImage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: quickevent-${{ env.VERSION }}-x86_64.Appimage
path: QuickEvent-*-x86_64.AppImage
4 changes: 2 additions & 2 deletions .github/actions/cmake/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ runs:
# Linux deps
- name: Install/cache clazy, ninja, openldap, doctest libfuse, and Qt's dependencies
if: runner.os != 'Windows'
uses: awalsh128/cache-apt-pkgs-action@v1.3.0
uses: awalsh128/cache-apt-pkgs-action@v1.4.1
with:
packages: ninja-build libgl1-mesa-dev libpulse-dev libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-shape0 libxcb-util1 libxcb-xinerama0 libxkbcommon-x11-0 libxcb-cursor-dev clazy libfuse-dev libgstreamer-gl1.0-0 libgstreamer-plugins-base1.0-0
version: 1.0
Expand All @@ -37,7 +37,7 @@ runs:

# Qt
- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
cache: true
version: ${{ inputs.qt_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/run-linter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
- name: Setup CMake
uses: ./.github/actions/cmake
with:
qt_version: 6.5.3
qt_version: 6.6.3
use_qt6: ON
modules: qtserialport qtmultimedia
additional_cmake_args: -DCMAKE_GLOBAL_AUTOGEN_TARGET=ON -DCMAKE_AUTOGEN_ORIGIN_DEPENDS=OFF
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ on:

jobs:
ubuntu-qe3:
name: Qt 6.5 / Ubuntu 22.04
name: Qt 6.6 / Ubuntu 22.04
runs-on: ubuntu-22.04
steps:
- name: Clone the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:

jobs:
windows:
name: Qt 6.7 / Windows
name: Qt 6.8 / Windows
runs-on: windows-2022
steps:
- name: Clone the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
run: iscc "-DBUILD_DIR=${{ github.workspace }}/install" "-DVERSION=${{ env.VERSION }}" quickevent/quickevent.iss

- name: Upload installer
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: quickevent-${{ env.VERSION }}-setup.exe
path: ${{ github.workspace }}/install/_inno/quickevent/quickevent-*-setup.exe
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
CXX: clang++
steps:
- name: Clone the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand All @@ -32,7 +32,7 @@ jobs:
CXX: clang++
steps:
- name: Clone the repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down