diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2015-03-23 15:11:44 +0100 |
|---|---|---|
| committer | serpilliere <serpilliere@users.noreply.github.com> | 2015-03-23 15:11:44 +0100 |
| commit | b25943ec234461856a4486539950eb93b31f1516 (patch) | |
| tree | e5914ec76d8f5b6bd096988781a5b81f2c4f1f86 | |
| parent | 22fba40007329ca57064ffa82b59037d13af9e9d (diff) | |
| parent | f602324faa32bd58e3b93d48f68cb66446b30b95 (diff) | |
| download | miasm-b25943ec234461856a4486539950eb93b31f1516.tar.gz miasm-b25943ec234461856a4486539950eb93b31f1516.zip | |
Merge pull request #125 from commial/travis-ci
Travis ci
Diffstat (limited to '')
| -rw-r--r-- | .travis.yml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index e2e47a41..9d7b8c2b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,10 @@ 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 ..;" +- "mkdir z3 && cd z3 && wget -O z3.zip 'http://download-codeplex.sec.s-msft.com/Download/SourceControlFileDownload.ashx?ProjectName=z3&changeSetId=cee7dd39444c9060186df79c2a2c7f8845de415b' && unzip -q z3.zip && rm z3.zip && python scripts/mk_make.py && cd build && make -j 32 && sudo make install && cd ../.." +- "pip install pyparsing" +- "python setup.py install" +script: "cd test && python test_all.py -m" |