Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using phing to deploy different environments

We're using phing to deploy our php application and we got into a little issue with deploying our environments.

We have 2 different production environments (each one with different config files), and a separate testing environment. We don't have an issue with the testing environment, as we have a different branch for the testing environment. The problem is that we're using the same branch for both our production environments.

Anyone has suggestions on how we can deploy into our production environments with different config / setting files? We rather keep the production branch as a single branch, but somehow separate the config files. We use zend framework, and I know about the different section we can have in the config files, but we also have a setting file for phing.

I looked around, but I can't seem to find a way to pass command line arguments to phing. Something like this could be really useful:

  phing -f build.xml production_live1
like image 834
aporat Avatar asked Dec 21 '22 08:12

aporat


1 Answers

You can use -D to set custom properties

phing -Denvironment=production_live1

You can access it within your build file like every other property

${environment}

Another solution would be, that you create different build files for every environment, which both includes the "main" build file build.xml and only contains the differences.

phing -f production_live1.xml

(and in production_live1.xml

<project name="production_live1" basedir="." default="all">
  <import file="main.xml" />
  <!-- different tasks here -->
</project>
like image 111
KingCrunch Avatar answered Dec 24 '22 01:12

KingCrunch