This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <property name="sf_setupWeblink_xml"><![CDATA[<setupWeblink>${sf_setupWeblink}</setupWeblink>]]></property> | |
| <condition property="sf_setupWeblink_element" value="${sf_setupWeblink_xml}" else=""> | |
| <isset property="sf_setupWeblink"/> | |
| </condition> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *.profile merge=union | |
| *.object merge=union | |
| *.layout merge=union | |
| src/package.xml merge=union |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <target name="taskRequired" depends="initHome"> | |
| <fail message="Must specify task."> | |
| <condition> | |
| <or> | |
| <not> | |
| <isset property="task"/> | |
| </not> | |
| <equals arg1="${task}" arg2=""/> | |
| </or> | |
| </condition> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <target name="RegularTask"> | |
| <property name="version" value="old"/> | |
| <antcall target="RegularTask_${version}"/> | |
| </target> | |
| <target name="RegularTask_old"> | |
| <!-- Legacy behavior --> | |
| </target> | |
| <target name="RegularTask_new"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| case "$1" in | |
| 'foxtrot') | |
| IP='54.54.54.1' | |
| ;; | |
| 'tango') | |
| IP='54.54.54.2' | |
| ;; | |
| 'whiskey') | |
| IP='54.54.54.2' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <target name="list" depends="initHome"> | |
| <property name="sf_metadataType" value="CustomMetadata"/> | |
| <property name="sf_folder" value="${sf_sourcedir}/${sf_metadataType}"/> | |
| <echo level="info">Retrieving components from the org using ... | |
| username="${sf_username}" | |
| password="${sf_password}${sf_securityToken}" | |
| serverurl="${sf_serverurl}" | |
| metadataType="${sf_metadataType}" | |
| folder="${sf_folder}" | |
| resultFilePath="${homedir}/listMetadata.xml"</echo> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <target name="postPullRequest" depends="initRepo"> | |
| <echo level="info">Creating Pull Request using ... | |
| "${tooldir}/sh/${post_pull_request_script}" | |
| repo_full_name="${repo_full_name}" | |
| repo_password="${repo_password}" | |
| repo_user="${repo_user}" | |
| </echo> | |
| <exec executable="bash" failonerror="${sf_failOnError}"> | |
| <arg value="${tooldir}/sh/${post_pull_request_script}"/> | |
| <env key="repo_full_name" value="${repo_full_name}"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo ${repo_post_pull_request_payload_github} | |
| curl -X POST -H "Content-Type: application/json" --user ${repo_user}:${repo_password} https://api.github.com/repos/${repo_owner}/${repo_full_name}/pulls --data ${repo_post_pull_request_payload_github} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <property name="sf_package_xml"><![CDATA[<?xml version="1.0" encoding="UTF-8"?><Package xmlns="${sf_xmlns}"> | |
| <fullName>${sf_fullName}</fullName> | |
| <postInstallClass>${sf_postInstallClass}</postInstallClass> | |
| <setupWeblink>${sf_setupWeblink}</setupWeblink> | |
| <version>${sf_apiVersion}</version> | |
| </Package>]]></property> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <target name="createFlowFolders" depends="initHome"> | |
| <mkdir dir="${homedir}/server"/> | |
| <echo file="${homedir}/server/package.xml" append="false"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> | |
| <Package xmlns="http://soap.sforce.com/2006/04/metadata"> | |
| <types> | |
| <members>*</members> | |
| <name>Flow</name> | |
| </types> | |
| <types> | |
| <members>*</members> |
NewerOlder