ACE3/circle.yml
2018-02-06 21:30:09 +01:00

23 lines
701 B
YAML

version: 2
jobs:
build:
docker:
- image: acemod/armake
steps:
- checkout
- run:
name: Validate SQF And Config style
command: python tools/sqf_validator.py && python tools/config_style_checker.py
- run:
name: Build
command: armake --version
- deploy:
name: Update documentation and translation statistics
command: |
if [ "${CIRCLE_BRANCH}" == "master" ] && [ "${CIRCLE_PROJECT_USERNAME}" == "acemod" ]; then
pip install pygithub pygithub3
python3 tools/deploy.py
else
echo "Skipping, not on acemod/ACE3 master branch..."
fi