Skip to content
This repository was archived by the owner on Sep 13, 2024. It is now read-only.

Commit

Permalink
Phing now works without the .phar at the end
Browse files Browse the repository at this point in the history
  • Loading branch information
EricHogue committed Aug 2, 2015
1 parent ab558e0 commit ab7828b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions JenkinsConfigs/SudokuConfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
<concurrentBuild>false</concurrentBuild>
<builders>
<hudson.plugins.phing.PhingBuilder plugin="[email protected]">
<name>phing.phar</name>
<useModuleRoot>true</useModuleRoot>
</hudson.plugins.phing.PhingBuilder>
</builders>
Expand Down Expand Up @@ -373,4 +372,4 @@
</hudson.tasks.Mailer>
</publishers>
<buildWrappers/>
</project>
</project>
3 changes: 0 additions & 3 deletions puphpet/files/exec-once/installJenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,6 @@ echo "Copy Jenkins configs"
cp /vagrant/JenkinsConfigs/JenkinsConfig.xml /var/lib/jenkins/config.xml
sudo chown jenkins:jenkins /var/lib/jenkins/config.xml

cp /vagrant/JenkinsConfigs/hudson.plugins.phing.PhingInstallation.xml /var/lib/jenkins/hudson.plugins.phing.PhingInstallation.xml
sudo chown jenkins:jenkins /var/lib/jenkins/hudson.plugins.phing.PhingInstallation.xml

mkdir /var/lib/jenkins/jobs/Sudoku/
cp /vagrant/JenkinsConfigs/SudokuConfig.xml /var/lib/jenkins/jobs/Sudoku/config.xml
sudo chown -R jenkins:jenkins /var/lib/jenkins/jobs/Sudoku/
Expand Down
5 changes: 3 additions & 2 deletions puphpet/files/exec-once/installPhing.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ sudo composer selfupdate

echo "Install Phing"
wget http://www.phing.info/get/phing-latest.phar
sudo mv phing-latest.phar /usr/local/bin/phing.phar
sudo chmod +x /usr/local/bin/phing.phar
sudo mv phing-latest.phar /usr/local/bin/phing
sudo chmod +x /usr/local/bin/phing

0 comments on commit ab7828b

Please sign in to comment.