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

CI Setup #4

Merged
merged 4 commits into from
Jan 27, 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
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
Loading