mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 23:51:09 +03:00
57c22c20b2
to build, run `make swagger`; a file named `swagger.json` will be written to the current working directory
29 lines
844 B
YAML
29 lines
844 B
YAML
language: python
|
|
|
|
python:
|
|
- 2.7
|
|
|
|
env:
|
|
- AWX_BUILD_TARGET=test
|
|
- AWX_BUILD_TARGET=ui-test-ci
|
|
- AWX_BUILD_TARGET="flake8 jshint"
|
|
- AWX_BUILD_TARGET="swagger"
|
|
|
|
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}"
|
|
- python tools/docker-compose/unit-tests/collect_shippable_results.py
|