summaryrefslogtreecommitdiffstats
path: root/shippable.yml
blob: f7644d063a89cc11931cccb0a8584e94ec7369ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: python

python:
    - 2.7

env:
  - AWX_BUILD_TARGET=test
  - AWX_BUILD_TARGET=ui-test-ci
  - AWX_BUILD_TARGET="flake8 jshint"

branches:
  only:
    - devel
    - release_*

build:
  pre_ci:
    - docker build -t ansible/awx_devel -f tools/docker-compose/Dockerfile .
    - docker tag ansible/awx_devel gcr.io/ansible-tower-engineering/awx_devel:latest
  pre_ci_boot:
    options: "-v /awx_devel:/awx_devel"
  ci:
    - cp -R . /awx_devel
    - pip install -U docker-compose
    - docker-compose -f tools/docker-compose/unit-tests/docker-compose-shippable.yml build --build-arg TAG=latest unit-tests
    - docker-compose -f tools/docker-compose/unit-tests/docker-compose-shippable.yml run unit-tests "make ${AWX_BUILD_TARGET}"