Revision 93178057
Von Christian Ehringfeld vor etwa 10 Jahren hinzugefügt
| .gitlab-ci.yml | ||
|---|---|---|
|
- develop
|
||
|
- master
|
||
|
|
||
|
deployment_job:
|
||
|
type: deploy
|
||
|
script:
|
||
|
|
||
|
|
||
|
only:
|
||
|
- master
|
||
|
#deployment_job:
|
||
|
# type: deploy
|
||
|
# script:
|
||
|
# only:
|
||
|
# - master
|
||
| .travis.yml | ||
|---|---|---|
|
|
||
|
|
||
|
install:
|
||
|
- lsb_release -a
|
||
|
#- lsb_release -a
|
||
|
# - if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
|
||
|
sudo apt-add-repository -y ppa:ubuntu-toolchain-r/test
|
||
|
&& sudo apt-add-repository -y ppa:beineri/opt-qt541
|
||
| appveyor.yml | ||
|---|---|---|
|
|
||
|
build_script:
|
||
|
# using a header file without MemoryBarrier, that causes the build to fail
|
||
|
- qmake EntityManager.pro "CONFIG+=release"
|
||
|
- qmake EntityManager.pro
|
||
|
# - qmake QOwnNotes.pro -r -spec win32-g++ "CONFIG+=debug"
|
||
|
- mingw32-make -j8
|
||
|
# creating the release path
|
||
| tests/Tests.pri | ||
|---|---|---|
|
include(../EntityManager.pri)
|
||
|
|
||
|
QT += core
|
||
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||
|
|
||
|
CONFIG += c++11
|
||
|
|
||
|
QT += testlib
|
||
|
CONFIG -= app_bundle
|
||
|
CONFIG += testcase
|
||
| tests/Tests.pro | ||
|---|---|---|
|
TEMPLATE = subdirs
|
||
|
SUBDIRS = tables
|
||
| tests/tables/.gitignore | ||
|---|---|---|
|
# This file is used to ignore files which are generated
|
||
|
# ----------------------------------------------------------------------------
|
||
|
|
||
|
*~
|
||
|
*.autosave
|
||
|
*.a
|
||
|
*.core
|
||
|
*.moc
|
||
|
*.o
|
||
|
*.obj
|
||
|
*.orig
|
||
|
*.rej
|
||
|
*.so
|
||
|
*.so.*
|
||
|
*_pch.h.cpp
|
||
|
*_resource.rc
|
||
|
*.qm
|
||
|
.#*
|
||
|
*.*#
|
||
|
core
|
||
|
!core/
|
||
|
tags
|
||
|
.DS_Store
|
||
|
*.debug
|
||
|
Makefile*
|
||
|
*.prl
|
||
|
*.app
|
||
|
moc_*.cpp
|
||
|
ui_*.h
|
||
|
qrc_*.cpp
|
||
|
Thumbs.db
|
||
|
*.res
|
||
|
*.rc
|
||
|
/.qmake.cache
|
||
|
/.qmake.stash
|
||
|
|
||
|
# qtcreator generated files
|
||
|
*.pro.user*
|
||
|
|
||
|
# xemacs temporary files
|
||
|
*.flc
|
||
|
|
||
|
# Vim temporary files
|
||
|
.*.swp
|
||
|
|
||
|
# Visual Studio generated files
|
||
|
*.ib_pdb_index
|
||
|
*.idb
|
||
|
*.ilk
|
||
|
*.pdb
|
||
|
*.sln
|
||
|
*.suo
|
||
|
*.vcproj
|
||
|
*vcproj.*.*.user
|
||
|
*.ncb
|
||
|
*.sdf
|
||
|
*.opensdf
|
||
|
*.vcxproj
|
||
|
*vcxproj.*
|
||
|
|
||
|
# MinGW generated files
|
||
|
*.Debug
|
||
|
*.Release
|
||
|
|
||
|
# Python byte code
|
||
|
*.pyc
|
||
|
|
||
|
# Binaries
|
||
|
# --------
|
||
|
*.dll
|
||
|
*.exe
|
||
|
|
||
|
|
||
| tests/tables/tables.pro | ||
|---|---|---|
|
include(../Tests.pri)
|
||
|
TARGET = Tables
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
SOURCES += \
|
||
|
../models.cpp
|
||
|
|
||
|
HEADERS += \
|
||
|
../models.h
|
||
|
|
||
Auch abrufbar als: Unified diff
init test stuff... much more work to do