forked from acemod/ACE3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
22 lines (22 loc) · 701 Bytes
/
circle.yml
File metadata and controls
22 lines (22 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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