Don't handle OMNIKEY 3x21 / 6121 as pinpad readers #411
Workflow file for this run
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
name: CMake (Fedora Linux) | |
on: [push, pull_request] | |
env: | |
BUILD_TYPE: RelWithDebInfo | |
BUILD_NUMBER: ${{github.run_number}} | |
QT_QPA_PLATFORM: offscreen | |
CMAKE_BUILD_PARALLEL_LEVEL: 3 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: 'fedora:39' | |
steps: | |
- name: Install Deps | |
run: dnf install -y git gcc-c++ cmake rpm-build openssl-devel pcsc-lite-devel qt6-qtsvg-devel qt6-qttools-devel gtest-devel | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Configure CMake | |
run: cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=/usr -B build -S . | |
- name: Build | |
run: cmake --build build --config $BUILD_TYPE --target package | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: web-eid-app-fedora-build-${{github.run_number}} | |
path: build/*rpm |