ACE3/circle.yml
Thomas Kooi 4c0056b737
fix armake issues with latest release against ACE3 (#6693)
This issue has been resolved in Armake on the master branch. By switching to the `:master` tag we can use armake to build the ACE project again.
2018-11-18 20:36:40 +01:00

23 lines
708 B
YAML

version: 2
jobs:
build:
docker:
- image: acemod/armake:master
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