Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dantti committed Nov 3, 2024
1 parent 55c74a8 commit dbaf7ca
Show file tree
Hide file tree
Showing 18 changed files with 264 additions and 39 deletions.
100 changes: 100 additions & 0 deletions .github/workflows/build.yml
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"
75 changes: 75 additions & 0 deletions .github/workflows/documentation.yml
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
53 changes: 53 additions & 0 deletions .github/workflows/nightly.yml
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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
*.out
*.app

build
build*/
*.user
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ cmake_minimum_required(VERSION 3.16)
project(libasql VERSION 0.92.0 LANGUAGES CXX)

include(GNUInstallDirs)
include(GenerateExportHeader)

find_package(PostgreSQL REQUIRED)
find_package(QT NAMES Qt6 COMPONENTS Core REQUIRED)
Expand Down
24 changes: 21 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,11 @@ add_library(ASqlQt${QT_VERSION_MAJOR}
${asql_HEADERS}
${asql_HEADERS_PRIVATE}
)

configure_file(asqlexports.h.in asqlexports.h @ONLY)
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/asqlexports.h
generate_export_header(ASqlQt${QT_VERSION_MAJOR}
BASE_NAME ASQL
)
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/asql_export.h
DESTINATION include/asql-qt${QT_VERSION_MAJOR}/ASql
)

Expand Down Expand Up @@ -100,6 +102,14 @@ add_library(ASqlQt${QT_VERSION_MAJOR}Migrations
${asql_migrations_HEADERS}
)

generate_export_header(ASqlQt${QT_VERSION_MAJOR}Migrations
BASE_NAME ASQL_MIGRATIONS
)
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/asql_migrations_export.h
DESTINATION include/asql-qt${QT_VERSION_MAJOR}/ASql
)

add_library(ASql::Migrations ALIAS ASqlQt${QT_VERSION_MAJOR}Migrations)
project_target_compile_definitions(ASqlQt${QT_VERSION_MAJOR}Migrations)

Expand Down Expand Up @@ -154,6 +164,14 @@ add_library(ASqlQt${QT_VERSION_MAJOR}Pg
${asql_pg_HEADERS}
)

generate_export_header(ASqlQt${QT_VERSION_MAJOR}Pg
BASE_NAME ASQL_PG
)
install(FILES
${CMAKE_CURRENT_BINARY_DIR}/asql_pg_export.h
DESTINATION include/asql-qt${QT_VERSION_MAJOR}/ASql
)

add_library(ASql::Pg ALIAS ASqlQt${QT_VERSION_MAJOR}Pg)
project_target_compile_definitions(ASqlQt${QT_VERSION_MAJOR}Pg)

Expand Down
2 changes: 1 addition & 1 deletion src/acache.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#pragma once

#include <adatabase.h>
#include <asqlexports.h>
#include <asql_export.h>
#include <chrono>

#include <QObject>
Expand Down
2 changes: 1 addition & 1 deletion src/acoroexpected.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#include <adatabase.h>
#include <aresult.h>
#include <asqlexports.h>
#include <asql_export.h>
#include <atransaction.h>
#include <coroutine>
#include <expected>
Expand Down
2 changes: 1 addition & 1 deletion src/adatabase.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
#pragma once

#include <asqlexports.h>
#include <asql_export.h>
#include <chrono>
#include <functional>
#include <memory>
Expand Down
2 changes: 1 addition & 1 deletion src/adriver.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#pragma once

#include <adatabase.h>
#include <asqlexports.h>
#include <asql_export.h>
#include <functional>

#include <QSocketNotifier>
Expand Down
2 changes: 1 addition & 1 deletion src/adriverfactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
#pragma once

#include <asqlexports.h>
#include <asql_export.h>
#include <memory>

namespace ASql {
Expand Down
5 changes: 3 additions & 2 deletions src/amigrations.h
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)
Expand Down
2 changes: 1 addition & 1 deletion src/apg.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include "adriverfactory.h"

#include <asqlexports.h>
#include <asql_pg_export.h>

#include <QUrl>

Expand Down
2 changes: 1 addition & 1 deletion src/apool.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <adatabase.h>
#include <adriverfactory.h>
#include <asqlexports.h>
#include <asql_export.h>

#include <QObject>
#include <QUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/apreparedquery.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
#pragma once

#include <asqlexports.h>
#include <asql_export.h>

#include <QString>

Expand Down
2 changes: 1 addition & 1 deletion src/aresult.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/
#pragma once

#include <asqlexports.h>
#include <asql_export.h>
#include <memory>

#include <QVariant>
Expand Down
Loading

0 comments on commit dbaf7ca

Please sign in to comment.