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
1) Add the codebuilders repo to your git config as a remote repo if it's not already there. | |
$ git remote add codebuilders-wf [email protected]:codebuilders-wf/aggregator.git | |
2) Push your branch to codebuilders to have it built by the Bamboo machine. | |
$ git push codebuilders-wf HEAD | |
3) Wait about 15 minutes and make sure the build and unit tests executed normally on the Bamboo machine. | |
https://bamboo.webfilings.com/browse/AGG | |
4) Go to GreenTools and deploy the build that was created by Bamboo. | |
https://dev.webfilings.com/deploytools/appspot_deployer.php |
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
# Standard lib imports | |
import os | |
from StringIO import StringIO | |
import httplib | |
from tempfile import TemporaryFile | |
import urllib | |
from xml_extraction import ExtractSchemaInfo, ExtractInstanceInfo | |
import app_constants |
NewerOlder