I'm confused how to use buildbot_travis with other, non-Python languages. The README only vaguely mentions:
The list of supported language is depending on your build worker configuration.
Say I have a .bbtravis.yml with:
language: julia
julia:
- 0.6
(1) How do I make subsequent steps tie into this?
Also, with such a bare-bones config, I get a julia $PROJECT python:python2.6 virtual builder thanks to
|
matrix = [] |
|
python = self.config.get("python", ["python2.6"]) |
|
if not isinstance(python, list): |
|
python = [python] |
(2) Can I customize this, or does this need something like #62?
I'm confused how to use buildbot_travis with other, non-Python languages. The README only vaguely mentions:
Say I have a
.bbtravis.ymlwith:(1) How do I make subsequent steps tie into this?
Also, with such a bare-bones config, I get a
julia $PROJECT python:python2.6virtual builder thanks tobuildbot_travis/buildbot_travis/travisyml.py
Lines 188 to 191 in 433be92
(2) Can I customize this, or does this need something like #62?