This is the documentation for Bamboo 5.8. View this page for the

Unknown macro: {spacejump}

of Bamboo, or visit the latest Bamboo documentation.

Phing is the PHP project build system or build tool based on Apache Ant. This page describes how to configure a Bamboo task to use Phing. See Configuring a builder task for an overview of Bamboo builder tasks.

To configure a Phing task:

  1. Navigate to the Tasks configuration tab for the job (this will be the default job if creating a new plan).
  2. Click the name of an existing Phing task, or click Add Task and then Phing to create a new task.
  3. Complete the following settings:
     

    Task DescriptionA description of the task, which is displayed in Bamboo.
    Disable this taskCheck, or clear, to selectively run this task.
    Executable

    The Phing executable that is available to perform the task. The executable that you
    select will become one of the task's (and so, the job's) requirements.

    TargetsThe Phing targets that you want this Bamboo task to execute (e.g. clean build test).
    Build FileThe name of your existing build file (by default build.xml).
    Options

    You can include any additional Phing command lines switches that you wish to use here.

    Working Sub Directory(Optional)  An alternative subdirectory, relative to the job's root directory, where Bamboo will run the executable. The root directory contains everything checked out from the job's configured source repository. If you leave this field blank, Bamboo will look for build files in the root directory. This option is useful if your task has a build script in a subdirectory and the executable needs to be run from within that subdirectory.
    Look for test result files?

    Check this box to tell Bamboo to look for test results. Test results must be in JUnit XML format,
    and the build will fail if none are found.

    Example of Phing PHPUnit target using JUnit XML formatter
    <target name="test">
      <phpunit haltonerror="true" haltonfailure="false">
        <formatter type="xml" todir="report/test-reports" outfile="phpunit.xml"/>
          <batchtest>
            <fileset dir="src">
              <include name="*.php"/>
            </fileset>
          </batchtest>
      </phpunit>
      <phpunitreport infile="report/test-reports/phpunit.xml" 
        format="noframes" todir="report"/>
    </target>
    Specify custom results directorySpecify the directory, relative to the root directory, where test results will be created. You can use patterns such as **/test-reports/*.xml. Bamboo requires test results to be in JUnit XML format.
    (warning) For jobs that use CVS, the root directory is <bamboo-home>/xml-data/build-dir/JOB_KEY/<cvs-module>.
  4. Click Save.

 

  • No labels