From 33a2e6f31134c34fba3b2425deda7996c7c5f22b Mon Sep 17 00:00:00 2001 From: Olli Vuolteenaho Date: Tue, 19 Nov 2024 06:37:49 +0200 Subject: [PATCH] Add Qt Gradle Plugin platform config We want automated testing for QtGP. Test cases that can be run with Gradle have been made a while ago, but they were only run locally by the developers. This commit adds Linux/macOS/Windows configurations for QtGP. These are marked TestOnly as the build/test process in Gradle is packaged together and we don't want to initiate builds for the Qt side. Task-number: QTTA-217 Change-Id: I777d191596f43089d0ad80cbb6470c62a0eee257 Reviewed-by: Assam Boudjelthia --- coin/platform_configs/qtgradleplugin.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 coin/platform_configs/qtgradleplugin.yaml diff --git a/coin/platform_configs/qtgradleplugin.yaml b/coin/platform_configs/qtgradleplugin.yaml new file mode 100644 index 00000000..05fcd410 --- /dev/null +++ b/coin/platform_configs/qtgradleplugin.yaml @@ -0,0 +1,18 @@ +Version: 2 +Include: [] +Configurations: +- + Id: 'qtgp-on-linux' + Template: 'qtci-linux-RHEL-9.4-x86_64-50' + Compiler: 'GCC' + Features: ['TestOnly'] +- + Id: 'qtgp-on-macos' + Template: 'qtci-macos-14-arm-106' + Compiler: 'Clang' + Features: ['TestOnly'] +- + Id: 'qtgp-on-windows' + Template: 'qtci-windows-11_23H2-x86_64-53' + Compiler: 'MSVC2022' + Features: ['TestOnly']