Permalink
Join GitHub today
GitHub is home to over 31 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time
language: java | |
cache: | |
directories: | |
- "$HOME/.cache" | |
before_install: | |
- pip install --user pip --upgrade pip | |
- pip install --user cython --upgrade Cython | |
- pip install --user pyjnius --upgrade pyjnius | |
install: true | |
jdk: | |
- oraclejdk8 | |
script: | |
- mvn clean package appassembler:assemble | |
- find target/appassembler/bin/ -type f -exec sed -i 's/-Xmx.*G/-Xmx2G/g' {} \; | |
- git clone https://github.com/castorini/Anserini-data.git | |
- cd eval && tar xvfz trec_eval.9.0.4.tar.gz && cd trec_eval.9.0.4 && make && cd .. && cd .. | |
- python src/main/python/run_regression.py --collection cacm --index --fail_eval | |
- ls target | grep fatjar | xargs python src/test/python/python_interface.py |