diff --git a/.reuse/dep5 b/.reuse/dep5 index 25b8d86e1..9a07372e9 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -14,7 +14,7 @@ Copyright: Klarälvdalens Datakonsult AB, a KDAB Group company License: GPL-2.0-or-later #misc config files -Files: 3rdparty/*/qt_attribution.json .clang-format .clang-tidy .clangd .clazy .cmake-format.py .codespellrc .emacs-dirvars .git-blame-ignore-revs .gitattributes .gitignore .kateconfig .krazy .mdlrc .mdlrc.rb .pep8 .pre-commit-config.yaml .pylintrc .qmake.conf .tag appveyor.ini appveyor.yml distro/* format.config.uncrustify.4_spaces *.qdocconf format_sources docs/collection/gammaray.qhcp.cmake examples/yocto/gammaray_git*.bb probe/gammaray_probe-android-dependencies.xml docs/api/Doxyfile.cmake .github/* +Files: 3rdparty/*/qt_attribution.json .clang-format .clang-tidy .clangd .clazy .cmake-format.py .codespellrc .emacs-dirvars .git-blame-ignore-revs .gitattributes .gitignore .kateconfig .krazy .mdlrc .mdlrc.rb .pep8 .pre-commit-config.yaml .pylintrc .qmake.conf .tag distro/* format.config.uncrustify.4_spaces *.qdocconf format_sources docs/collection/gammaray.qhcp.cmake examples/yocto/gammaray_git*.bb probe/gammaray_probe-android-dependencies.xml docs/api/Doxyfile.cmake .github/* Copyright: Klarälvdalens Datakonsult AB, a KDAB Group company License: BSD-3-Clause diff --git a/appveyor.ini b/appveyor.ini deleted file mode 100644 index 6eeca52d3..000000000 --- a/appveyor.ini +++ /dev/null @@ -1,87 +0,0 @@ -[General] -Branch = master -ShallowClone = True - -# Variables defined here override the default value -# The variable names are case sensitive -[Variables] -#Root = D:\qt-sdk - -#Values need to be overwritten to create a cache -UseCache = True -CreateCache = True -Msys = C:\msys64\ -APPVEYOR_BUILD_FOLDER = ${Variables:Root} - - -# Settings applicable for all Crafts matrices -# Settings are Category/key=value -# Category is case sensitive -[GeneralSettings] -Paths/Python = C:\Python37-x64 -Paths/Python27 = C:\Python27 -Paths/Msys = ${Variables:Msys} -Paths/DownloadDir = ${Variables:Root}/downloads -ShortPath/Enabled = False -ShortPath/EnableJunctions = True -ShortPath/JunctionDir = ${Variables:Root}/csp -Packager/Destination =${Variables:APPVEYOR_BUILD_FOLDER}/binaries -Packager/UseCache = ${Variables:UseCache} -Packager/CreateCache = ${Variables:CreateCache} -Packager/CacheDir = ${Variables:APPVEYOR_BUILD_FOLDER}/cache -Packager/RepositoryUrl = https://downloads.kdab.com/ci/cache/gammaray/cache -ContinuousIntegration/RepositoryUrl = https://downloads.kdab.com/ci/cache/gammaray/binaries -ContinuousIntegration/Enabled=True -ContinuousIntegration/UpdateRepository = True -Compile/BuildType = Release -QtSDK/Version=5.15.11 -QtSDK/Path=C:\Qt -QtSDK/Enabled=True -Blueprints/BlueprintRoot = ${Variables:Root}/blueprints - -# the version of the config -Version/ConfigVersion = 6 - -[BlueprintSettings] -/.buildTests = False - -qt-apps/gammaray.version = master -qt-apps/charm.version = master - -libs/openssl.version = 1.0.2o - -libs/icu.ignored = True -binary/mysql.ignored = True -libs/dbus.ignored = True - -# since Qt 5.11 qttools (qtdoc) depend on clang, we don't need qtdoc -libs/llvm-meta.ignored = True - -[windows-msvc2015_32-cl-BlueprintSettings] -qt-apps/gammaray.gammarayProbeOnly = True - -[windows-msvc2015_32-cl] -Packager/PackageType = SevenZipPackager -QtSDK/Compiler = msvc2015 -General/ABI = windows-msvc2015_32-cl - -[windows-msvc2017_32-cl-BlueprintSettings] -qt-apps/gammaray.gammarayProbeOnly = True - -[windows-msvc2017_32-cl] -Packager/PackageType = SevenZipPackager -QtSDK/Compiler = msvc2017 -General/ABI = windows-msvc2017_32-cl - -[windows-mingw_32-gcc-BlueprintSettings] -qt-apps/gammaray.gammarayProbeOnly = True -qt-apps/gammaray.disableGammarayBuildCliInjector = True - -[windows-mingw_32-gcc] -Packager/PackageType = SevenZipPackager -QtSDK/Compiler = mingw73_32 -General/ABI = windows-mingw_32-gcc - -[windows-msvc2017_64-cl] -QtSDK/Compiler = msvc2017_64 -General/ABI = windows-msvc2017_64-cl diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 142a8670e..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,55 +0,0 @@ -version: '{build}-{branch}' -image: Visual Studio 2017 - -branches: - # whitelist - only: - - master - -clone_depth: 50 - - -init: -- ps: | - function craft() { - & "C:\Python37-x64\python.exe" "C:\CraftMaster\CraftMaster\CraftMaster.py" --config "$env:APPVEYOR_BUILD_FOLDER\appveyor.ini" --variables "APPVEYOR_BUILD_FOLDER=$env:APPVEYOR_BUILD_FOLDER" --target $env:TARGET -c $args - if($LASTEXITCODE -ne 0) {exit $LASTEXITCODE} - } - -install: -- ps: | - #use cmd to silence powershell behaviour for stderr - & cmd /C "git clone -q --depth=1 git://anongit.kde.org/craftmaster.git C:\CraftMaster\CraftMaster 2>&1" - craft craft - craft --install-deps gammaray - -build_script: -- ps: | - craft --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER gammaray - -after_build: -- ps: | - if ($env:TARGET -eq "windows-msvc2017_64-cl") { - craft --add-blueprint-repository [git]https://github.com/KDAB/craft-blueprints-kdab.git - craft --no-cache gammaray-binary-probes - craft nsis - } - craft --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER --package gammaray - -#test_script: -#- ps: | - #craft --no-cache --src-dir $env:APPVEYOR_BUILD_FOLDER --test gammaray -test: off - -environment: - matrix: - - TARGET: windows-msvc2017_32-cl - - TARGET: windows-msvc2017_64-cl - -artifacts: - - path: cache\**\.* - - path: binaries\* - -deploy: - - provider: Environment - name: GammaRay