Browse Source

Add some notes about future direction

Oz N Tiram 9 years ago
parent
commit
01a7edfbc7
3 changed files with 11 additions and 0 deletions
  1. 5 0
      frank/__init__.py
  2. 5 0
      frank/conf.py
  3. 1 0
      frank/frank.py

+ 5 - 0
frank/__init__.py

@@ -0,0 +1,5 @@
+# notes about config
+# the config should be able to set destroy build or not.
+# each build is done in a directory names after the git hash
+# if the build is successful it will be removed, and if not it will
+# be conditionally removed.

+ 5 - 0
frank/conf.py

@@ -2,3 +2,8 @@
 GITHUB_USER, GITUB_PASSWORD = "user", "secret"
 POST_KEY = '6361675'
 
+# notes about config
+# the config should be able to set destroy build or not.
+# each build is done in a directory names after the git hash
+# if the build is successful it will be removed, and if not it will
+# be conditionally removed.

+ 1 - 0
frank/frank.py

@@ -301,6 +301,7 @@ def start():
     # the following implementation is very crud 
     failed = None
     for action in parse_yaml(clone_dest):
+        # if config says we use huey, we should modiy run_action
         results = run_action(action)
     
     if any([result.code for result in results]):