Introduction
Travis CI is a cloud-based continuous integration and delivery solution that helps small to large software development teams test, debug and deploy codes. Travis CI provided services to Open-source projects for free. In this era of test-driven development and Continues Integration, Travis CI is an essential tool for increasing productivity.
This article will explain how to install Travis CI on Ubuntu 20.04 OS.
Installing Travis CI on Ubuntu:
- Update the software repository before installing new software.
$ sudo apt update && apt upgrade -y
- After updating the software repository enable snap on your system with the following command.
$ sudo apt install snapd
- Run the below command to install Travis.
$ sudo snap install travis
- You can verify the successful installation of the Travis CI by checking the installed version.
$ travis version