{
  "_class" : "hudson.matrix.MatrixRun",
  "actions" : [
    {
      
    },
    {
      "_class" : "hudson.model.CauseAction",
      "causes" : [
        {
          "_class" : "hudson.model.Cause$UpstreamCause",
          "shortDescription" : "Started by upstream project \"gluegen\" build number 631",
          "upstreamBuild" : 631,
          "upstreamProject" : "gluegen",
          "upstreamUrl" : "job/gluegen/"
        }
      ]
    },
    {
      "_class" : "hudson.plugins.git.util.BuildData",
      "buildsByBranchName" : {
        "origin/master" : {
          "_class" : "hudson.plugins.git.util.Build",
          "buildNumber" : 631,
          "buildResult" : None,
          "marked" : {
            "SHA1" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
            "branch" : [
              {
                "SHA1" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
                "name" : "origin/master"
              }
            ]
          },
          "revision" : {
            "SHA1" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
            "branch" : [
              {
                "SHA1" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
                "name" : "origin/master"
              }
            ]
          }
        }
      },
      "lastBuiltRevision" : {
        "SHA1" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
        "branch" : [
          {
            "SHA1" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
            "name" : "origin/master"
          }
        ]
      },
      "remoteUrls" : [
        "git://jogamp.org/srv/scm/gluegen.git"
      ],
      "scmName" : ""
    },
    {
      "_class" : "hudson.plugins.git.GitTagAction"
    },
    {
      
    },
    {
      "_class" : "hudson.tasks.junit.TestResultAction",
      "failCount" : 0,
      "skipCount" : 0,
      "totalCount" : 106,
      "urlName" : "testReport"
    },
    {
      
    },
    {
      
    },
    {
      "_class" : "org.jenkinsci.plugins.displayurlapi.actions.RunDisplayAction"
    }
  ],
  "artifacts" : [
    
  ],
  "building" : False,
  "description" : None,
  "displayName" : "linux-x86_64",
  "duration" : 120380,
  "estimatedDuration" : 189647,
  "executor" : None,
  "fullDisplayName" : "gluegen » linux-x86_64 linux-x86_64",
  "id" : "2013-02-08_19-29-16",
  "inProgress" : False,
  "keepLog" : False,
  "number" : 631,
  "queueId" : -1,
  "result" : "SUCCESS",
  "timestamp" : 1360348156000,
  "url" : "https://jogamp.org/chuck/job/gluegen/label=linux-x86_64/631/",
  "builtOn" : "linux64-AMD58xx-ubuntu10-jogamp-x64-sgothel-002",
  "changeSet" : {
    "_class" : "hudson.plugins.git.GitChangeSetList",
    "items" : [
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "make/scripts/adb-launch-main.sh"
        ],
        "commitId" : "60409268e1d43be26b656b191d6684037f943123",
        "timestamp" : 1360343089000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Script: ADB launcher: Use system package, instead of user package (pkg -> sys in URI)\u000a",
        "date" : "2013-02-08T18:04:49+0100",
        "id" : "60409268e1d43be26b656b191d6684037f943123",
        "msg" : "Script: ADB launcher: Use system package, instead of user package (pkg",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "make/scripts/adb-launch-main.sh"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "make/scripts/crosstest-java-linux-armv6-rel.sh",
          "src/junit/com/jogamp/common/os/TestElfReader01.java",
          "make/scripts/crosstest-java-linux-armv6hf-rel.sh",
          "src/java/jogamp/common/os/elf/ElfHeader.java",
          "make/scripts/runtest.sh",
          "src/java/jogamp/common/os/PlatformPropsImpl.java"
        ],
        "commitId" : "371e1dbff6f5f255ab27ed0ab32368abb06eed82",
        "timestamp" : 1360344070000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "Bug 681: Use ELF Header + ARM EABI Section Parsing in PlatformPropsImpl to to distinguish ARM soft-float/hard-float (part-2)\u000a\u000a+    /**\u000a+     * Returns the {@link ABIType} of the current platform using given {@link CPUType cpuType}\u000a+     * and {@link OSType osType} as a hint.\u000a+     * <p>\u000a+     * Note the following queries are performed:\u000a+     * <ul>\u000a+     *   <li> not {@link CPUFamily#ARM} -> {@link ABIType#GENERIC_ABI} </li>\u000a+     *   <li> else\u000a+     *   <ul>\u000a+     *     <li> not {@link OSType#LINUX} -> {@link ABIType#EABI_GNU_ARMEL} </li>\u000a+     *     <li> else\u000a+     *     <ul>\u000a+     *       <li> Elf ARM Tags -> {@link ABIType#EABI_GNU_ARMEL}, {@link ABIType#EABI_GNU_ARMHF} </li>\u000a+     *     </ul></li>\u000a+     *   </ul></li>\u000a+     * </ul>\u000a+     * </p>\u000a+     * <p>\u000a+     * Elf ARM Tags are read using {@link ElfHeader}, .. and {@link SectionArmAttributes#abiVFPArgsAcceptsVFPVariant(byte)}.\u000a+     * </p>\u000a+     *\u000a+     * @param cpuType\u000a+     * @param osType\u000a+     * @return\u000a+     */\u000a+    private static final ABIType queryABITypeImpl(CPUType cpuType, OSType osType) {\u000a",
        "date" : "2013-02-08T18:21:10+0100",
        "id" : "371e1dbff6f5f255ab27ed0ab32368abb06eed82",
        "msg" : "Bug 681: Use ELF Header + ARM EABI Section Parsing in PlatformPropsImpl",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/java/jogamp/common/os/elf/ElfHeader.java"
          },
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/os/TestElfReader01.java"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/crosstest-java-linux-armv6-rel.sh"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/crosstest-java-linux-armv6hf-rel.sh"
          },
          {
            "editType" : "edit",
            "file" : "make/scripts/runtest.sh"
          },
          {
            "editType" : "edit",
            "file" : "src/java/jogamp/common/os/PlatformPropsImpl.java"
          }
        ]
      },
      {
        "_class" : "hudson.plugins.git.GitChangeSet",
        "affectedPaths" : [
          "src/junit/com/jogamp/common/os/TestElfReader01.java"
        ],
        "commitId" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
        "timestamp" : 1360344519000,
        "author" : {
          "absoluteUrl" : "https://jogamp.org/chuck/user/sven%20gothel",
          "fullName" : "Sven Gothel"
        },
        "authorEmail" : "sgothel@jausoft.com",
        "comment" : "TestElfReader01.testGNULinuxSelfExe: Restrict to LINUX\u000a",
        "date" : "2013-02-08T18:28:39+0100",
        "id" : "a47d19d59cc8772dcf1ef67083c4401d913ad8d2",
        "msg" : "TestElfReader01.testGNULinuxSelfExe: Restrict to LINUX",
        "paths" : [
          {
            "editType" : "edit",
            "file" : "src/junit/com/jogamp/common/os/TestElfReader01.java"
          }
        ]
      }
    ],
    "kind" : "git"
  },
  "culprits" : [
    {
      "absoluteUrl" : "https://jogamp.org/chuck/user/sgothel",
      "fullName" : "Sven Gothel"
    }
  ]
}