Armake install (#6356)

Add building ace3 on CircleCI using armake. It will build it on every commit / PR
This commit is contained in:
Thomas Kooi 2018-05-20 11:07:00 +02:00 committed by GitHub
parent cdf6218619
commit 10f19997bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 48 additions and 43 deletions

View File

@ -2,15 +2,20 @@ version: 2
jobs: jobs:
build: build:
docker: docker:
- image: thojkooi/ci-python - image: acemod/armake
steps: steps:
- checkout - checkout
- run: - run:
name: Validate SQF and Config style name: Validate SQF and Config style
command: python tools/sqf_validator.py && python tools/config_style_checker.py command: python tools/sqf_validator.py && python tools/config_style_checker.py
- run:
name: Build
command: |
make -j 2
deployment: deployment:
docker: docker:
- image: thojkooi/ci-python - image: acemod/armake
branch: master branch: master
requires: requires:
- build - build

View File

@ -1,41 +1,41 @@
--- ---
layout: wiki layout: wiki
title: Fortify title: Fortify
description: Enables player to build fortifications. description: Enables player to build fortifications.
group: feature group: feature
category: interaction category: interaction
parent: wiki parent: wiki
mod: acex mod: acex
version: version:
major: 3 major: 3
minor: 3 minor: 3
patch: 0 patch: 0
--- ---
## 1. Overview ## 1. Overview
Enable players to place down fortifications. Budget enables mission makers / admin to restrict the amount of resources available. Enable players to place down fortifications. Budget enables mission makers / admin to restrict the amount of resources available.
## 2. Usage ## 2. Usage
Please note that to use this function the Fortify module needs to be placed down and `Fortify Tool` equipped by player. Please note that to use this function the Fortify module needs to be placed down and `Fortify Tool` equipped by player.
### 2.1 Placing fortification ### 2.1 Placing fortification
- Open self-interaction menu with <kbd>Ctrl</kbd> + <kbd>⊞ Win</kbd> (ACE3 default). - Open self-interaction menu with <kbd>Ctrl</kbd> + <kbd>⊞ Win</kbd> (ACE3 default).
- Select `Equipment` -> `Fortify`. - Select `Equipment` -> `Fortify`.
- Choose your fortification object and follow the instructions on the screen. - Choose your fortification object and follow the instructions on the screen.
### 2.1 Removing fortification ### 2.1 Removing fortification
- Use interaction <kbd>⊞ Win</kbd> on object. - Use interaction <kbd>⊞ Win</kbd> on object.
## 3. Tips ## 3. Tips
- Using <kbd>Alt</kbd> / <kbd>Ctrl</kbd> / <kbd>Shift</kbd> + <kbd>Scroll Wheel</kbd> you can rotate object on different axis. - Using <kbd>Alt</kbd> / <kbd>Ctrl</kbd> / <kbd>Shift</kbd> + <kbd>Scroll Wheel</kbd> you can rotate object on different axis.
- You can use planks to get up on rooftops. - You can use planks to get up on rooftops.
- Holding <kbd>Ctrl</kbd> while placing allows for placing multiple objects of the same type. - Holding <kbd>Ctrl</kbd> while placing allows for placing multiple objects of the same type.
## 4. Dependencies ## 4. Dependencies
{% include dependenciesx_list.md component="fortify" %} {% include dependenciesx_list.md component="fortify" %}