2016-07-27 15:24:33 +02:00
|
|
|
language: python
|
|
|
|
|
|
|
|
cache: pip
|
2016-04-11 12:38:28 +02:00
|
|
|
|
|
|
|
sudo: required
|
|
|
|
|
|
|
|
dist: trusty
|
|
|
|
|
2016-07-27 15:24:33 +02:00
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
- "3.3"
|
|
|
|
- "3.4"
|
|
|
|
- "3.5"
|
|
|
|
- "3.5-dev"
|
|
|
|
- "nightly"
|
|
|
|
|
2016-04-11 12:38:28 +02:00
|
|
|
install:
|
|
|
|
- git clone https://github.com/stedolan/jq.git
|
|
|
|
- pushd jq
|
|
|
|
- autoreconf -i
|
|
|
|
- ./configure --disable-maintainer-mode
|
|
|
|
- make
|
|
|
|
- sudo make install
|
|
|
|
- popd
|
2016-07-27 15:24:33 +02:00
|
|
|
- git clone https://github.com/MISP/PyTaxonomies.git
|
|
|
|
- pushd PyTaxonomies
|
|
|
|
- pip install .
|
|
|
|
- popd
|
2016-04-11 12:38:28 +02:00
|
|
|
|
|
|
|
script:
|
|
|
|
- cat */*.json | jq .
|
2016-07-27 15:24:33 +02:00
|
|
|
- pytaxonomies -l MANIFEST.json -a
|