From de0cc51f7367fe6c5fd59083f19947cc6ef7ab64 Mon Sep 17 00:00:00 2001 From: byrond Date: Thu, 10 Nov 2022 22:46:31 -0500 Subject: [PATCH 1/4] explicitly disable Pantheon build step --- defaults/install/pantheon.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/defaults/install/pantheon.yml b/defaults/install/pantheon.yml index d20d944c..b401575b 100644 --- a/defaults/install/pantheon.yml +++ b/defaults/install/pantheon.yml @@ -3,3 +3,4 @@ api_version: 1 web_docroot: true php_version: 7.4 drush_version: 8 +build_step: false From 7382357398050c76d4c7e2083320b5f1dffc63ba Mon Sep 17 00:00:00 2001 From: Bec White Date: Thu, 17 Nov 2022 12:21:19 -0600 Subject: [PATCH 2/4] Update the PHP version and Drush version in the pantheon.yml as well. --- defaults/install/pantheon.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/defaults/install/pantheon.yml b/defaults/install/pantheon.yml index b401575b..7de57ff2 100644 --- a/defaults/install/pantheon.yml +++ b/defaults/install/pantheon.yml @@ -1,6 +1,8 @@ # Pantheon configuration file +# @see https://pantheon.io/docs/pantheon-yml + api_version: 1 web_docroot: true -php_version: 7.4 -drush_version: 8 +php_version: 8.1 +drush_version: 11 build_step: false From dce44bcbd2695b7cc098cd771369cb0f4ca0bdd5 Mon Sep 17 00:00:00 2001 From: Bec White Date: Thu, 17 Nov 2022 14:32:52 -0600 Subject: [PATCH 3/4] Update comment in pantheon deployment example config. --- defaults/install/.circleci/deploy-pantheon.example | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/defaults/install/.circleci/deploy-pantheon.example b/defaults/install/.circleci/deploy-pantheon.example index 22b4a64d..544f0073 100644 --- a/defaults/install/.circleci/deploy-pantheon.example +++ b/defaults/install/.circleci/deploy-pantheon.example @@ -1,5 +1,6 @@ -# Example snippet for deploy job in config.yml. Add this code to deploy to Pantheon. Update PANTHEON_PUBKEY -# with the entry from your known_hosts file for the code server. +# Example snippet for deploy job in config.yml. Add this code to deploy to Pantheon. +# Update PANTHEON_PUBKEY with the entry from your known_hosts file for the code server. +# (To get the known_hosts entry, git clone the SSH URL of the Pantheon repository.) # # You will also need to add a step to the build job to persist to workspace: # From 0e544533e85afc8155bd1cc5b689209ec954e2d6 Mon Sep 17 00:00:00 2001 From: Bec White Date: Thu, 17 Nov 2022 16:08:41 -0600 Subject: [PATCH 4/4] Whoops only Drush up to version 10 is supported at this time. --- defaults/install/pantheon.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/install/pantheon.yml b/defaults/install/pantheon.yml index 7de57ff2..0f2a736c 100644 --- a/defaults/install/pantheon.yml +++ b/defaults/install/pantheon.yml @@ -4,5 +4,5 @@ api_version: 1 web_docroot: true php_version: 8.1 -drush_version: 11 +drush_version: 10 build_step: false