Skip to content

Commit

Permalink
Merge pull request #4 from sisakat/workflows
Browse files Browse the repository at this point in the history
CI Setup
  • Loading branch information
sisakat authored Jan 27, 2024
2 parents 7b2530a + cbc50ab commit c0adc2a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-ubuntu-x64.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Build Ubuntu x64

on: [push, pull_request]

env:
BUILD_TYPE: Release

jobs:
build:
runs-on: self-hosted

steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.23)
cmake_minimum_required(VERSION 3.22)

project(e57inspector VERSION 0.2.2)

Expand Down
2 changes: 1 addition & 1 deletion app/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ About::About(QWidget* parent) : QDialog(parent), ui(new Ui::About)
QDirIterator::NoIteratorFlags);
while (licenseIterator.hasNext())
{
auto fileInfo = licenseIterator.nextFileInfo();
auto fileInfo = licenseIterator.fileInfo();
QFile licenseFile(fileInfo.absoluteFilePath());
if (licenseFile.open(QIODevice::ReadOnly))
{
Expand Down

0 comments on commit c0adc2a

Please sign in to comment.