tl;dr: Acquia Pipelines lets you automate building, testing, and deploying sites on Acquia Cloud using tools like Composer, Sass, and Behat. You must be a current Acquia client or partner to participate in the Beta. To request a private beta invite, submit a support ticket with the subject, "Pipelines Beta Access".
Acquia has a long history of providing cutting-edge developer tools. Acquia Cloud's Workflow UI, released in March 2011, made it easy to develop, stage, and deploy your site across identical environments. In 2012, we added Cloud API and Cloud Hooks to enable automating additional tasks such as database migrations and notifying stakeholders on releases. Acquia Cloud Free tier came along in 2013, and real-time log streaming in 2014. Just recently, we released Acquia BLT and Acquia Lightning.
During this time, the landscape of tools and processes that development teams use has changed dramatically. The days of just downloading Drupal core and contrib modules, committing them to a repository, and deploying are numbered. Today's developers use Composer to manage dependencies, Sass to generate CSS, Behat to test it all, throw in some Gulp to orchestrate the entire process, and this is the new normal. Indeed, Drupal 8 and contrib have incorporated some of these tools and workflows, making their use essentially mandatory. With these more and more complicated Continuous Deployment (CD) processes it's important that all the steps are reliable and, more importantly, repeatable across all the developers on your teams.
That's why we are pleased to announce the private beta of Acquia Pipelines. Pipelines makes it possible to take what's in your repository and transform it into a build artifact, test it, and then deploy it in Cloud. Pipelines allows you to:
Â
At the heart of every Pipelines implementation is the acquia-pipelines.yml file. The YAML file is your recipe that automates building, testing and deploying your artifact. Combined with the Pipelines CLI client, you can start and monitor the entire artifact creation process. Here is a simple example:
version: 1.0.0 events: build: steps: - my_build: type: script script: - composer install - compass compile docroot/themes/custom/MY_THEME
This says that when a âbuildâ event is triggered, Pipelines should perform a single step named âmy_buildâ which runs composer install to download dependencies and compass compile to compile Sass into CSS. When the steps complete successfully, the resulting build artifact is stored and, optionally, deployed on Acquia Cloud. Pipelines executes the job on its elastic, containerized infrastructure, separate from the infrastructure that runs any of your Cloud environments.
Request an invitation to the private beta, or ask your Acquia account manager about participating in the private beta. Note: The invitation request form is different from the "Subscribe" form displayed just below this paragraph!
If this content did not answer your questions, try searching or contacting our support team for further assistance.
Thu Apr 11 2019 17:04:07 GMT+0000 (Coordinated Universal Time)