We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b74091 commit 8e809f5Copy full SHA for 8e809f5
2 files changed
Jenkinsfile
@@ -654,7 +654,19 @@ class TestAndPackage extends AgentJob {
654
655
void prepare_for_testing() {
656
// make a copy from GTOOLKIT_FOLDER to the EXAMPLES_FOLDER
657
- platform().exec(script, "./gt-installer", "--verbose copy-to ${GlamorousToolkit.EXAMPLES_FOLDER}")
+ platform().exec(script, "./gt-installer", "--verbose copy-to ${GlamorousToolkit.EXAMPLES_FOLDER} --include-app false")
658
+
659
+ if (platform() == Platform.MacOS || platform() == Platform.Windows) {
660
+ script.withCredentials([
661
+ script.string(credentialsId: 'editor-customer-id', variable: 'FEENK_CUSTOMER_ID'),
662
+ script.string(credentialsId: 'editor-private-key', variable: 'FEENK_CUSTOMER_KEY')
663
+ ]) {
664
+ platform().exec(script, "./gt-installer", "download vm --customer-level pro")
665
+ }
666
667
+ else {
668
+ platform().exec(script, "./gt-installer", "download vm --customer-level regular")
669
670
671
// On Windows we must disable the firewall for the exe, otherwise there will be no internet access when running examples / tests
672
if (platform() == Platform.Windows) {
gtoolkit-builder.version
@@ -1 +1 @@
1
-v0.200.0
+v0.202.0
0 commit comments