Docker image with Armake and various pre-installed tooling aimed towards Python, to help speed up build times in CI pipelines.
This uses Ubuntu trusty and installs Python and Armake.
- armake
- git
- python3
- make
- zip
- pygithub
In gitlab-ci:
unit-tests:
stage: test
image: acemod/armake:latest
script:
- armake --version
circle-ci:
version: 2
jobs:
build:
docker:
- image: acemod/armake
steps:
- checkout
- run:
name: Armake
command: |
armake --help
PRs accepted. All issues should be reported in the Github issue tracker.