-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
264 additions
and
39 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-24.04 | ||
- windows-latest | ||
- macos-latest | ||
config: | ||
- qt_version: "6.4.2" | ||
|
||
steps: | ||
- name: Install dependencies on Ubuntu | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt update -qq | ||
sudo apt install -y doxygen graphviz postgresql-server-dev-16 | ||
- name: Install dependencies on macOS | ||
if: runner.os == 'macOS' | ||
run: | | ||
brew install postgresql@16 | ||
- name: Install PostgreSQL 16 with Chocolatey | ||
if: runner.os == 'Windows' | ||
run: | | ||
choco install postgresql --version=16.0 -y | ||
- name: Install Qt with options and default aqtversion | ||
uses: jurplel/install-qt-action@v4 | ||
with: | ||
aqtversion: null # use whatever the default is | ||
version: ${{ matrix.config.qt_version }} | ||
cache: true | ||
|
||
- name: Install ninja-build tool (must be after Qt due PATH changes) | ||
uses: turtlesec-no/get-ninja@main | ||
|
||
- name: Make sure MSVC is found when Ninja generator is in use | ||
if: ${{ runner.os == 'Windows' }} | ||
uses: ilammy/msvc-dev-cmd@v1 | ||
|
||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Configure project (Shared Link) | ||
run: > | ||
cmake -S . -B ./build-shared -G Ninja | ||
-DCMAKE_BUILD_TYPE=Debug | ||
-DCMAKE_PREFIX_PATH="/opt/homebrew/opt/postgresql@16;C:\Program Files\PostgreSQL\16" | ||
-DENABLE_MAINTAINER_CFLAGS=${{ matrix.build_type == 'Debug' }} | ||
-DBUILD_SHARED_LIBS=ON | ||
- name: Build project | ||
run: cmake --build ./build-shared | ||
|
||
- name: Run tests | ||
id: ctest_shared | ||
run: ctest --test-dir ./build-shared -C Debug --output-on-failure | ||
|
||
- name: Read tests log when it fails | ||
uses: andstor/file-reader-action@v1 | ||
if: ${{ steps.ctest_shared.conclusion == 'failure' }} | ||
with: | ||
path: "./build-shared/Testing/Temporary/LastTest.log" | ||
|
||
# Installing PostgreSQL on Windows takes too much time, so better reuse it here | ||
- name: Configure project (Static Link) | ||
run: > | ||
cmake -S . -B ./build-static -G Ninja | ||
-DCMAKE_BUILD_TYPE=Debug | ||
-DCMAKE_PREFIX_PATH="/opt/homebrew/opt/postgresql@16;C:\Program Files\PostgreSQL\16" | ||
-DBUILD_SHARED_LIBS=OFF | ||
- name: Build project | ||
run: cmake --build ./build-static | ||
|
||
- name: Run tests | ||
id: ctest_static | ||
run: ctest --test-dir ./build-static -C Debug --output-on-failure | ||
|
||
- name: Read tests log when it fails | ||
uses: andstor/file-reader-action@v1 | ||
if: ${{ steps.ctest_static.conclusion == 'failure' }} | ||
with: | ||
path: "./build-static/Testing/Temporary/LastTest.log" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
name: Deploy API docs to GitHub Pages | ||
|
||
on: | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
push: | ||
branches: | ||
- master | ||
|
||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | ||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | ||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | ||
concurrency: | ||
group: "pages" | ||
cancel-in-progress: false | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- name: Install Dependencies on Linux | ||
run: | | ||
sudo apt update -qq | ||
sudo apt install -y doxygen graphviz postgresql-server-dev-all | ||
- name: Install Qt | ||
uses: jurplel/install-qt-action@v4 | ||
with: | ||
aqtversion: null # use whatever the default is | ||
version: 6.6.0 | ||
cache: true | ||
documentation: true | ||
doc-archives: 'qtcore' | ||
|
||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
|
||
- name: Configure project | ||
run: > | ||
cmake -S . -B ./build | ||
-DBUILD_ALL=ON | ||
-DPLUGIN_VIEW_CUTELEE=OFF | ||
-DPLUGIN_VIEW_EMAIL=OFF | ||
-DUSE_JEMALLOC=OFF | ||
-DDOCS_QTDOCSDIR:PATH="${{ runner.workspace }}/Qt/Docs/Qt-6.6.0" | ||
- name: Create docs | ||
run: cmake --build ./build --target webdocs | ||
|
||
- name: Upload artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
path: build/webdocs/ | ||
|
||
# Deployment job, what was uploaded to artifact | ||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: CI Nightly | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
schedule: | ||
- cron: '0 3 * * *' | ||
|
||
jobs: | ||
build: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-24.04 | ||
|
||
config: | ||
- name: clang-tidy | ||
cmake_arg: '-DCMAKE_CXX_CLANG_TIDY=clang-tidy' | ||
qt_version: "6.7.3" | ||
|
||
- name: clazy | ||
cmake_arg: '-DCMAKE_CXX_COMPILER=clazy' | ||
qt_version: "6.7.3" | ||
|
||
steps: | ||
- name: Install dependencies on Ubuntu | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt update -qq | ||
sudo apt install -y clazy doxygen graphviz postgresql-server-dev-all | ||
- name: Install Qt ${{ matrix.config.qt_version }} with options and default aqtversion | ||
uses: jurplel/install-qt-action@v4 | ||
with: | ||
version: ${{ matrix.config.qt_version }} | ||
cache: true | ||
|
||
- name: Install ninja-build tool (must be after Qt due PATH changes) | ||
uses: turtlesec-no/get-ninja@main | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: Configure project | ||
run: > | ||
cmake -S . -B ./build -G Ninja ${{ matrix.config.cmake_arg }} | ||
-DCMAKE_BUILD_TYPE=Debug | ||
--warn-uninitialized -Werror=dev | ||
-DENABLE_MAINTAINER_CFLAGS=ON | ||
- name: Build Project | ||
run: cmake --build ./build |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,5 +31,5 @@ | |
*.out | ||
*.app | ||
|
||
build | ||
build*/ | ||
*.user |
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
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
*/ | ||
#pragma once | ||
|
||
#include <asqlexports.h> | ||
#include <asql_export.h> | ||
#include <memory> | ||
|
||
namespace ASql { | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
/* | ||
* SPDX-FileCopyrightText: (C) 2020-2023 Daniel Nicoletti <[email protected]> | ||
* SPDX-FileCopyrightText: (C) 2020-2024 Daniel Nicoletti <[email protected]> | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
#pragma once | ||
|
||
#include <adatabase.h> | ||
#include <asql_migrations_export.h> | ||
|
||
#include <QObject> | ||
|
||
namespace ASql { | ||
|
||
class AMigrationsPrivate; | ||
class ASQL_EXPORT AMigrations : public QObject | ||
class ASQL_MIGRATIONS_EXPORT AMigrations : public QObject | ||
{ | ||
Q_OBJECT | ||
Q_DECLARE_PRIVATE(AMigrations) | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
#include "adriverfactory.h" | ||
|
||
#include <asqlexports.h> | ||
#include <asql_pg_export.h> | ||
|
||
#include <QUrl> | ||
|
||
|
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
*/ | ||
#pragma once | ||
|
||
#include <asqlexports.h> | ||
#include <asql_export.h> | ||
|
||
#include <QString> | ||
|
||
|
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
Oops, something went wrong.