Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I learn to set up a build process? [closed]

What I was taught at school is all about programming languages, software design, but hardly anything about how to automatically build a software, probably with something like unit testing integrated.

Please tell me how do one start learning to set up a build process for his project.

If this is too abstract to make any sense, I would add that I use Python and do web programming with Django.

Thanks in advance.

like image 617
satoru Avatar asked Apr 11 '10 03:04

satoru


3 Answers

I think that the process you are referring to is called continuous integration.

One of the popular tools for that is Hudson (see Hudson with django). Make sure to also check out the django-continuous-integration project.

like image 36
Olivier Verdier Avatar answered Oct 24 '22 05:10

Olivier Verdier


I like a couple of Pragmatic Programmers' books on this subject, Ship it! and Release it!. Together, they teach a lot of real-world, pragmatic stuff about such things as build systems and how to design well-deployable programs.

like image 138
Alex Martelli Avatar answered Oct 24 '22 05:10

Alex Martelli


If you're doing this in Java, you can check out Maven. There are a host of tutorials for it:

  • Maven in Five Minutes
  • The Maven Tutorial: A practical guide for Maven 2 users
  • Maven: The definitive Guide (book)

All of this falls under the category of Software-Development Principles, Software-Design Philosophy, Software-Configuration Management, and Build and Release Management:

  • Best practices for build and release management
  • High-level best practices in Software-Configuration Management
  • Software-Configuration Management Best Principles

It's a moderately-involved field. After years of programming, I'm still learning and understanding new things about build-management and software-configuration management.

like image 2
Vivin Paliath Avatar answered Oct 24 '22 05:10

Vivin Paliath