summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-04-09 23:30:25 +0200
committerLegrandin <gooksankoo@hoiptorrow.mailexpire.com>2012-04-09 23:30:25 +0200
commit7ad012fae30f558e40efdd541e4e6503e47343b1 (patch)
treefc9279c434c3e0dc1c1459e0408a8674c2544e1f
parent0d59c912352bfea2ea3a557d5bd861f7d52d2fbc (diff)
parent5f1d0abf8d615dcf8bdcf17f310f9644c8c06305 (diff)
downloadpycrypto-7ad012fae30f558e40efdd541e4e6503e47343b1.tar.gz
Merge branch 'master' of git://github.com/dlitz/pycrypto
-rw-r--r--cruise_config.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/cruise_config.rb b/cruise_config.rb
deleted file mode 100644
index ccf8e40..0000000
--- a/cruise_config.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-# Project-specific configuration for CruiseControl.rb
-
-Project.configure do |project|
-
- # Send email notifications about broken and fixed builds to email1@your.site, email2@your.site (default: send to nobody)
- # project.email_notifier.emails = ['email1@your.site', 'email2@your.site']
-
- # Set email 'from' field to john@doe.com:
- # project.email_notifier.from = 'john@doe.com'
-
- # Build the project by invoking rake task 'custom'
- # project.rake_task = 'custom'
-
- # Build the project by invoking shell script "build_my_app.sh". Keep in mind that when the script is invoked,
- # current working directory is <em>[cruise&nbsp;data]</em>/projects/your_project/work, so if you do not keep build_my_app.sh
- # in version control, it should be '../build_my_app.sh' instead
- python = case project.name
- when /-py2(\d)$/
- "python2.#{$1}"
- else
- "python"
- end
- project.build_command = "#{python} setup.py build test"
-
- # Ping Subversion for new revisions every 5 minutes (default: 30 seconds)
- # project.scheduler.polling_interval = 5.minutes
-
- # Force the project always build once every day and always build whether there are source control changes or not
- # project.scheduler.polling_interval = 1.day
- # project.scheduler.always_build = true
-
- # Force the project to check for source control changes every given time interval, but NOT build if there are no changes
- # project.triggered_by ScheduledBuildTrigger.new(project, :build_interval => 5.minutes, :start_time => 2.minutes.from_now)
-end