Minecraft-Overviewer/.travis.yml

30 lines
966 B
YAML
Raw Normal View History

2012-10-12 14:14:15 +00:00
language: python
dist: xenial
2012-10-12 14:14:15 +00:00
python:
2019-03-17 17:08:03 +00:00
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
env:
2022-06-23 13:13:08 +00:00
- MC_VERSION=1.19
2015-08-15 22:37:18 +00:00
before_install:
- wget https://raw.githubusercontent.com/python-pillow/Pillow/master/src/libImaging/Imaging.h
- wget https://raw.githubusercontent.com/python-pillow/Pillow/master/src/libImaging/ImagingUtils.h
- wget https://raw.githubusercontent.com/python-pillow/Pillow/master/src/libImaging/ImPlatform.h
2012-10-12 14:14:15 +00:00
install:
- pip install -q pillow
- pip install -q numpy
2019-03-30 11:57:23 +00:00
- pip install -q networkx
- pip install -q pytest
2019-03-17 17:08:03 +00:00
- python3 setup.py build
2012-10-12 14:14:15 +00:00
before_script:
- git clone git://github.com/overviewer/Minecraft-Overviewer-Addons.git ~/mcoa/
- mkdir -p ~/.minecraft/versions/${MC_VERSION}/
2019-04-26 02:11:49 +00:00
- wget -N https://overviewer.org/textures/${MC_VERSION} -O ~/.minecraft/versions/${MC_VERSION}/${MC_VERSION}.jar
2012-10-12 14:14:15 +00:00
script:
- pytest
2019-03-17 17:08:03 +00:00
- python3 overviewer.py ~/mcoa/exmaple ~/test-output --rendermodes=smooth-lighting -p1
2012-10-12 14:14:15 +00:00
notifications:
email: false