Senior SRE at a tech vendor with 10,001+ employees
Real User
Top 5
Sep 17, 2024
Travis CI is mainly used to run integration tests as part of the deployment, which I do on Kubernetes. The Travis workflows are integrated with any changes in my code. It will have different jobs, which may trigger a link-based job, build the image, and run some integration tests. Apart from deployment, it is used for all CI parts for any service I develop.
Build Automation refers to automating the tasks involved in the process of creating a software build and the associated processes including compiling computer source code into binary code, packaging binary code, and running automated tests.Build Automation systems streamline the software development lifecycle, improving efficiency and reliability. They eliminate repetitive tasks by automating set procedures, allowing developers to focus on coding rather than build-related activities....
Travis CI is mainly used to run integration tests as part of the deployment, which I do on Kubernetes. The Travis workflows are integrated with any changes in my code. It will have different jobs, which may trigger a link-based job, build the image, and run some integration tests. Apart from deployment, it is used for all CI parts for any service I develop.