You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mesos.apache.org by "Chris Aniszczyk (JIRA)" <ji...@apache.org> on 2011/07/21 01:19:58 UTC

[jira] [Created] (MESOS-31) Create a build to run on builds.apache.org

Create a build to run on builds.apache.org
------------------------------------------

                 Key: MESOS-31
                 URL: https://issues.apache.org/jira/browse/MESOS-31
             Project: Mesos
          Issue Type: Task
            Reporter: Chris Aniszczyk


Mesos should be easy to build and should have a CI build running on https://builds.apache.org/

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MESOS-31) Create a build to run on builds.apache.org

Posted by "Andy Konwinski (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MESOS-31?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13148978#comment-13148978 ] 

Andy Konwinski commented on MESOS-31:
-------------------------------------

It's now building! see: https://builds.apache.org/job/Mesos-Trunk-Ubuntu.

I've renamed the build configuration to "Mesos-Trunk-Ubuntu".

it's set to poll svn every minute, and when it finds a change (i.e. a commit), it runs configure, make, and all the tests.

This is done via the following script:

# java/latest does not appear to be 64bit jvm, see MESOS-76,
# so using a 64bit java explicitly
#export JAVA_HOME=/home/jenkins/tools/java/latest
export JAVA_HOME=/home/jenkins/tools/java/jdk1.6.0_20-64
export PATH=$JAVA_HOME/bin:$PATH

if [ -d build ]; then
  rm -rf build
fi
mkdir build
cd build
../configure --with-python-headers=/usr/include/python2.6 \
  --with-webui \
  --with-java-home=$JAVA_HOME \
  --with-java-headers=$JAVA_HOME/include \
  --with-included-zookeeper
make
bin/tests/all-tests
                
> Create a build to run on builds.apache.org
> ------------------------------------------
>
>                 Key: MESOS-31
>                 URL: https://issues.apache.org/jira/browse/MESOS-31
>             Project: Mesos
>          Issue Type: Task
>            Reporter: Chris Aniszczyk
>
> Mesos should be easy to build and should have a CI build running on https://builds.apache.org/

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MESOS-31) Create a build to run on builds.apache.org

Posted by "Andy Konwinski (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MESOS-31?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13147427#comment-13147427 ] 

Andy Konwinski commented on MESOS-31:
-------------------------------------

I've been working on this issue, following the instructions at http://wiki.apache.org/general/Hudson

First, I got permission to add a new build project at builds.apache.org (see https://issues.apache.org/jira/browse/INFRA-4105)

Now, I've been trying to set up a build for mesos. See https://builds.apache.org/job/Mesos-OSX

Though it is named Mesos-OSX, it appears that the only osx Jenkins "executor" node is down (a node named OSX1). So I reconfigured it to try running on one of the Ubuntu Jenkins "executors". I sent an email to builds@apache.org about osx1 being down. Here is the body of what I sent:

-------------------
I'm a committer for the Mesos Podling. 

I was trying to set up a Jenkins build on node OSX1, but it appears to be down.  https://builds.apache.org/computer/osx1/

Sorry if this has already been addressed somewhere, I tried searching the archives of this list and in issues.apache.org (by keyword osx1 for INFRA and also for any project).

Andy

                
> Create a build to run on builds.apache.org
> ------------------------------------------
>
>                 Key: MESOS-31
>                 URL: https://issues.apache.org/jira/browse/MESOS-31
>             Project: Mesos
>          Issue Type: Task
>            Reporter: Chris Aniszczyk
>
> Mesos should be easy to build and should have a CI build running on https://builds.apache.org/

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Resolved] (MESOS-31) Create a build to run on builds.apache.org

Posted by "Andy Konwinski (Resolved) (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/MESOS-31?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Andy Konwinski resolved MESOS-31.
---------------------------------

    Resolution: Fixed
      Assignee: Andy Konwinski
    
> Create a build to run on builds.apache.org
> ------------------------------------------
>
>                 Key: MESOS-31
>                 URL: https://issues.apache.org/jira/browse/MESOS-31
>             Project: Mesos
>          Issue Type: Task
>            Reporter: Chris Aniszczyk
>            Assignee: Andy Konwinski
>
> Mesos should be easy to build and should have a CI build running on https://builds.apache.org/

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (MESOS-31) Create a build to run on builds.apache.org

Posted by "Andy Konwinski (Commented) (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/MESOS-31?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13147429#comment-13147429 ] 

Andy Konwinski commented on MESOS-31:
-------------------------------------

That build is currently failing with (https://builds.apache.org/job/Mesos-OSX/3/console):

/bin/sh: /usr/lib/jvm/java-6-sun/bin/javac: not found

So I'm probably using the wrong configure flags (I had guessed the ubuntu nodes had java-6-sun installed, maybe they have openjdk instead?)

Also, we expect it to fail on Ubuntu till we apply patches related to MESOS-37 that fix the build on Ubuntu.
                
> Create a build to run on builds.apache.org
> ------------------------------------------
>
>                 Key: MESOS-31
>                 URL: https://issues.apache.org/jira/browse/MESOS-31
>             Project: Mesos
>          Issue Type: Task
>            Reporter: Chris Aniszczyk
>
> Mesos should be easy to build and should have a CI build running on https://builds.apache.org/

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira