diff options
| author | Ajax <commial@gmail.com> | 2015-03-23 14:50:21 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2015-03-23 14:50:21 +0100 |
| commit | b1d60be94658e7d839c0552f0727ac3274de5804 (patch) | |
| tree | 00560606cd6f22989ab778bfe9bc3ec8a3c1b055 | |
| parent | 22fba40007329ca57064ffa82b59037d13af9e9d (diff) | |
| download | miasm-b1d60be94658e7d839c0552f0727ac3274de5804.tar.gz miasm-b1d60be94658e7d839c0552f0727ac3274de5804.zip | |
TravisCI: Multilines
| -rw-r--r-- | .travis.yml | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index e2e47a41..9876a965 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,9 @@ apt_packages: - gcc - libpython2.7-dev - unzip -before_install: -- "git clone http://repo.or.cz/tinycc.git tinycc && cd tinycc && git checkout d5e22108a0dc48899e44a158f91d5b3215eb7fe6 && ./configure --disable-static && make && sudo make install && cd .. && hg clone https://code.google.com/p/elfesteem/ elfesteem && cd elfesteem && python setup.py install && cd .. && pip install pyparsing && python setup.py install && sudo ldconfig" -script: "cd test && python test_all.py -m" \ No newline at end of file +before_script: +- "git clone http://repo.or.cz/tinycc.git tinycc && cd tinycc && git checkout d5e22108a0dc48899e44a158f91d5b3215eb7fe6 && ./configure --disable-static && make && sudo make install && sudo ldconfig && cd ..;" +- "hg clone https://code.google.com/p/elfesteem/ elfesteem && cd elfesteem && python setup.py install && cd ..;" +- "pip install pyparsing" +- "python setup.py install" +script: "cd test && python test_all.py -m" |