Skip to content
This repository has been archived by the owner on Feb 6, 2022. It is now read-only.

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
elnebuloso committed Mar 2, 2015
1 parent 019e334 commit 8efefb2
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 8.3.0

- project packaging
- removed jenkins target from chains

## 8.2.0

- project packaging
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.0
8.3.0
2 changes: 0 additions & 2 deletions commons/chains/php-composer-package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

<target name="init:main" hidden="true" depends="composer.validate, composer.update" />
<target name="test:main" hidden="true" depends="test.phplint, test.phpunit" />
<target name="build:before" hidden="true" depends="jenkins.environment" />
<target name="build:after" hidden="true" depends="jenkins.environment" />

<!-- additional targets -->
<target name="release" hidden="true" depends="test, composer.format, project.version.update" />
Expand Down
2 changes: 0 additions & 2 deletions commons/chains/php-website.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
<target name="test:main" hidden="true" depends="test.phplint, test.phpunit" />
<target name="bundle:main" hidden="true" depends="bundle.javascript, bundle.stylesheet" />
<target name="package:main" hidden="true" depends="composer.optimize, project.package" />
<target name="build:before" hidden="true" depends="jenkins.environment" />
<target name="build:after" hidden="true" depends="jenkins.environment" />

<!-- additional targets -->
<target name="release" hidden="true" depends="test, project.version.update, composer.format" />
Expand Down
2 changes: 0 additions & 2 deletions commons/chains/php.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

<target name="init:main" hidden="true" depends="composer.validate, composer.update" />
<target name="test:main" hidden="true" depends="test.phplint, test.phpunit" />
<target name="build:before" hidden="true" depends="jenkins.environment" />
<target name="build:after" hidden="true" depends="jenkins.environment" />

<!-- additional targets -->
<target name="release" hidden="true" depends="test, project.version.update, composer.format" />
Expand Down
17 changes: 10 additions & 7 deletions commons/targets/project/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<target name="project.package:init" hidden="true">
<property name="project.package.patternset.id" value="project_package_patternset_default" />
<property name="project.package.deploy.path" value="" />
<property name="project.package.copy.path" value="" />

<patternset id="project_package_patternset_default">
<include name="**/**" />
Expand Down Expand Up @@ -42,14 +42,17 @@

<if>
<not>
<equals arg1="${project.package.deploy.path}" arg2="" />
<equals arg1="${project.package.copy.path}" arg2="" />
</not>
<then>
<echo message="deploy source: ${project.tmp}/${project.version}.tar" />
<echo message="deploy destination: ${project.package.deploy.path}/${project.version}.tar" />
<tstamp />
<property name="project.package.copy.destination" value="${project.package.copy.path}/${project.version}_${DSTAMP}${TSTAMP}.tar" />

<mkdir dir="${project.package.deploy.path}" />
<copy file="${project.tmp}/${project.version}.tar" tofile="${project.package.deploy.path}/${project.version}.tar" overwrite="true" />
<echo message="copy source: ${project.tmp}/${project.version}.tar" />
<echo message="copy destination: ${project.package.copy.destination}" />

<mkdir dir="${project.package.copy.path}" />
<copy file="${project.tmp}/${project.version}.tar" tofile="${project.package.copy.destination}" overwrite="true" />
</then>
</if>
</target>
Expand All @@ -69,7 +72,7 @@
<echo message="Property Value" />
<echo message="----------------------------------------------------------------------------------------------------" />
<echo message="project.package.patternset.id ${project.package.patternset.id}" />
<echo message="project.package.deploy.path ${project.package.deploy.path}" />
<echo message="project.package.copy.path ${project.package.copy.path}" />
</target>


Expand Down

0 comments on commit 8efefb2

Please sign in to comment.