Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/cmake-linux-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install dependencies
run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libpcsclite-dev libgtest-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake-linux-coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Install dependencies
run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libpcsclite-dev libgtest-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cmake-linux-fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Deps
run: dnf install -y --setopt=install_weak_deps=False git gcc-c++ cmake rpm-build openssl-devel pcsc-lite-devel qt6-qtsvg-devel qt6-qttools-devel gtest-devel

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Build
run: cmake --build build --config $BUILD_TYPE --target package

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: web-eid-app-fedora-build-fedora${{matrix.container}}-${{github.run_number}}
path: build/*rpm
4 changes: 2 additions & 2 deletions .github/workflows/cmake-linux-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Install dependencies
run: apt update -qq && apt install --no-install-recommends -y git lsb-release fakeroot build-essential devscripts debhelper lintian pkg-config cmake libpcsclite-dev libssl-dev libgtest-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Test package
run: lintian build/*.deb

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v7
with:
name: web-eid-app-ubuntu-build-ubuntu${{matrix.container}}-${{ matrix.arch }}-${{github.run_number}}
path: build/*.*deb
8 changes: 4 additions & 4 deletions .github/workflows/cmake-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false

- name: Cache
uses: actions/cache@v4
uses: actions/cache@v5
id: cache
with:
path: |
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.10.1
version: 6.10.2
arch: clang_64
cache: true

Expand All @@ -82,7 +82,7 @@ jobs:
# run: ctest -V -C ${BUILD_TYPE} --test-dir ${BUILD_DIR}

- name: Upload artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: web-eid-app-macos-build-${{github.run_number}}
path: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cmake-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false

- name: Cache vcpkg
id: cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
${{ github.workspace }}/vcpkg_cache
Expand All @@ -36,7 +36,7 @@ jobs:
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.10.1
version: 6.10.2
arch: ${{ matrix.arch == 'arm64' && 'win64_msvc2022_arm64' || 'win64_msvc2022_64' }}
cache: true

Expand Down Expand Up @@ -73,15 +73,15 @@ jobs:
run: ctest -V -C ${env:BUILD_TYPE} --test-dir build

- name: Upload artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: web-eid-app-windows-build-${{matrix.arch}}-${{github.run_number}}
path: |
build/src/app/*.msi
build/src/app/*.exe

- name: Upload debug artifacts
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v7
with:
name: web-eid-app-windows-debug-${{matrix.arch}}-${{github.run_number}}
path: build/**/*.pdb
4 changes: 2 additions & 2 deletions src/controller/commands.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ class CommandType
NONE = -1
};

CommandType() = default;
constexpr CommandType(const CommandTypeEnum _value) : value(_value) {}
CommandType() noexcept = default;
constexpr CommandType(const CommandTypeEnum _value) noexcept : value(_value) {}

constexpr bool operator==(CommandTypeEnum other) const { return value == other; }
constexpr bool operator!=(CommandTypeEnum other) const { return value != other; }
Expand Down
Loading
Loading