Hi!
I have to build and test some projects. All these use the same commands. I've made them each into a project:
- checkout
- build1
- build2
- install1
- install2
- build3
- install3
- test
This has to be done multiple times on different hardware. At now I defined multiple projects doing the same:
- LinuxA, ARM6
- LinuxA, ARM7
- LinuxA, i686
- LinuxA, amd64
- Solaris, amd64
- Solaris, sparc
- FreeBSD, amd64
Is it in any way possible to define a "Master Project" and call the subprojects with parameters and keep the logs destinct? Someting like:
- LinuxA, ARM6
- checkout
- build1
- build2
- install1
- install2
- build3
- install3
- test
- LinuxA, ARM7
- checkout
- build1
- build2
- install1
- install2
- build3
- install3
- test
- LinuxA, i686
- checkout
- build1
- build2
- install1
- install2
- build3
- install3
- test
So changing configuration of say "1. checkout" would magically change configuration for all projects using this subproject?
Thanks for any hint or idea in advance!
Thomas