Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [tycho-user] Multiple execution environments but only one product?

If it is okay to only have only a distribution for one platform, you can override the target-platform-configuration for the module that build the product.

The idea of creating multi-platform or platform-independent distributions is discussed here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=344095

Regards
Tobias

> -----Original Message-----
> From: tycho-user-bounces@xxxxxxxxxxx [mailto:tycho-user-
> bounces@xxxxxxxxxxx] On Behalf Of motes motes
> Sent: 10 August 2011 09:44
> To: Tycho user list
> Subject: [tycho-user] Multiple execution environments but only one
> product?
> 
> I need to be able to build my rcp application on my windows machine
> and on hudson/linux server. Since I have a bunch of swt tests (the
> correct platform dependent fragments must be loaded) I need to
> specifiy:
> 
> 				<artifactId>target-platform-
> configuration</artifactId>
> 				<version>${tycho-version}</version>
> 				<configuration>
> 					<resolver>p2</resolver>
> 					<environments>
> 						<environment>
> 							<os>win32</os>
> 							<ws>win32</ws>
> 							<arch>x86</arch>
> 						</environment>
> 						<environment>
> 							<os>linux</os>
> 							<ws>gtk</ws>
> 							<arch>x86</arch>
> 						</environment>
> 					</environments>
> 
> As a result both a windows and a linux version of the product is
> build. But I only need to build a windows product. Is it possible to
> specify multiple execution environments but only build one product
> (maybe set the environment in hudson)?
> _______________________________________________
> tycho-user mailing list
> tycho-user@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/tycho-user


Back to the top