Jazz Forum Welcome to the Jazz Community Forum Connect and collaborate with IBM Engineering experts and users

scmtools on aix

Hello,

We have our build engines running on AIX and would like to push some built jars back into a published project. We do this so that other teams have a known good jar to integrate to (instead of having code).

Is it possible to run the command line scm on AIX? Is there some alternative to get the same behaviour?

Thanks for any help

0 votes



3 answers

Permanent link
Officially I don't think we support AIX for 1.0 and 1.0.X. However, internally we do run on AIX so it should be possible. The only gotcha I can think of is the scm binary not being binary compatible, but if that's the case, simply grab the eclipse binary from a fresh AIX Eclipse 3.3.2 build (http://archive.eclipse.org/eclipse/downloads/drops/R-3.3.2-200802211800/index.php) and rename to scm and run. This should work to get you unblocked until we have an official RTC download for AIX.
Cheers,
Jean-Michel

0 votes


Permanent link
Ok, so simply grabbing the eclipse binary and renaming to scm resulted in the following error:
The Scm executable launcher was unable to locate its companion shared library.

I have the following script for the BuildEngine (jbe), is there something similar I can use for scm?

INSTALL=/home/RTC

BUILDSYSTEM=$INSTALL/TeamConcertBuild/buildsystem/buildengine
LAUNCHER=$BUILDSYSTEM/eclipse/plugins/org.eclipse.equinox.launcher_1.0.1.R33x_v2
0080118.jar
APPLICATION=com.ibm.team.build.engine.jazzBuildEngine
java -jar $LAUNCHER -application $APPLICATION $*


Any ideas?

0 votes


Permanent link
Just for an update, after finally getting back to this tonight I found the only modification to the jbe script was to change the APPLICATION to com.ibm.team.filesystem.cli.core.id1

So all that is required is to copy the scmtools directory to an AIX box and use the script below.


#!/bin/sh

INSTALL=/home/scmtools
SCMTOOLS=$INSTALL/scmtools
LAUNCHER=$SCMTOOLS/eclipse/plugins/org.eclipse.equinox.launcher_1.0.1.R33x_v2008
0118.jar
APPLICATION=com.ibm.team.filesystem.cli.core.id1
java -jar $LAUNCHER -application $APPLICATION $*

0 votes

Your answer

Register or log in to post your answer.

Dashboards and work items are no longer publicly available, so some links may be invalid. We now provide similar information through other means. Learn more here.

Search context
Follow this question

By Email: 

Once you sign in you will be able to subscribe for any updates here.

By RSS:

Answers
Answers and Comments
Question details

Question asked: Jan 31 '09, 11:24 p.m.

Question was seen: 6,105 times

Last updated: Jan 31 '09, 11:24 p.m.

Confirmation Cancel Confirm