October 2017 Summaries
2 posts from CircleCI
Filter
Month:
Year:
Post Summaries
Back to Blog
Google Chrome continues to lead as the most popular web browser globally, with its extensive range of extensions enhancing user productivity and experience. The process of developing and deploying Chrome Extensions is evolving, with automation playing a crucial role in streamlining updates and bug fixes. A practical example of this is the creation of a simple Tab Counter extension, which counts open tabs and serves as a learning tool for building continuous integration/continuous deployment (CI/CD) pipelines using CircleCI. Automating the deployment process through CircleCI, Google Chrome Web Store API, and shell commands significantly reduces manual effort, minimizes human error, and ensures updates are consistently delivered. The guide outlines the prerequisites, including setting up Google OAuth credentials and configuring a CircleCI pipeline to automate the deployment of a Chrome Extension. Advanced practices such as handling development vs. production builds, using Git tags to control deployments, and employing workspaces for multi-step workflows are also discussed to enhance the deployment process.
Oct 23, 2017
1,962 words in the original blog post.
The text explores the CircleCI 2.0 Workflows feature, emphasizing its ability to enhance build processes through parallelism and detailed coordination between jobs. It describes a sample workflow comprising four jobs, where dependencies are updated and cached, before branching into parallel jobs for testing and asset precompilation. Successful completion of these tasks leads to a deployment job, highlighting the advantages of parallel execution, customizable environments, and the ability to efficiently manage build times. The Workflows feature allows for failed job reruns without restarting the entire process and offers detailed status reports for each job to the version control system, facilitating easier identification and resolution of issues. The post promises future discussions on advanced features such as workspace forwarding and manual approval jobs.
Oct 04, 2017
574 words in the original blog post.