mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
4452ee86bd
* Turn mount test back on
* Mount tests need PRIVILEGED so turn that back on
Revert "Revert "Set PRIVILEGED=true for non_destructive tests. (#17733)" (#17738)"
This reverts commit dc0fb1c212
.
* Add a needs_privileged tag so that we can skip mount tests on centos6
Some containers timeout on shippable tests when run with privileged.
Unfortunately, some tests require that in order to run. Tagging those
allows us to skip those tests on the platforms that timeout when we get
ready to run the integration test in shippable.
* Centos6 times out with PRIVILEGED set so remove that (will disable the mount tests on centos6)
* Remove false start
89 lines
3.7 KiB
YAML
89 lines
3.7 KiB
YAML
language: python
|
|
|
|
env:
|
|
matrix:
|
|
- TEST=none
|
|
|
|
matrix:
|
|
exclude:
|
|
- env: TEST=none
|
|
include:
|
|
- env: TEST=remote TARGET=all PLATFORM=osx VERSION=10.11
|
|
|
|
- env: TEST=remote TARGET=all PLATFORM=freebsd VERSION=10.3-STABLE
|
|
|
|
- env: TEST=remote TARGET=ci_win1 PLATFORM=windows VERSION=2012-R2_RTM
|
|
- env: TEST=remote TARGET=ci_win2 PLATFORM=windows VERSION=2012-R2_RTM
|
|
- env: TEST=remote TARGET=ci_win3 PLATFORM=windows VERSION=2012-R2_RTM
|
|
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:centos6
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:centos7
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:fedora-rawhide
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:fedora23
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:opensuseleap
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:ubuntu1204 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:ubuntu1404 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:ubuntu1604
|
|
- env: TEST=integration TARGET=destructive IMAGE=ansible/ansible:ubuntu1604py3 PYTHON3=1
|
|
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:centos6
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:centos7 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:fedora-rawhide PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:fedora23 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:opensuseleap PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:ubuntu1204 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:ubuntu1404 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:ubuntu1604 PRIVILEGED=true
|
|
- env: TEST=integration TARGET=non_destructive IMAGE=ansible/ansible:ubuntu1604py3 PYTHON3=1 PRIVILEGED=true
|
|
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:centos6
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:centos7
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:fedora-rawhide
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:fedora23
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:opensuseleap
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:ubuntu1204
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:ubuntu1404
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:ubuntu1604
|
|
- env: TEST=integration TARGET=other IMAGE=ansible/ansible:ubuntu1604py3 PYTHON3=1
|
|
|
|
- env: TEST=sanity INSTALL_DEPS=1 TOXENV=py24
|
|
python: 2.7
|
|
- env: TEST=sanity INSTALL_DEPS=1 TOXENV=py26
|
|
python: 2.6
|
|
- env: TEST=sanity INSTALL_DEPS=1 TOXENV=py27
|
|
python: 2.7
|
|
- env: TEST=sanity INSTALL_DEPS=1 TOXENV=py35
|
|
python: 3.5
|
|
|
|
- env: TEST=code-smell INSTALL_DEPS=1
|
|
python: 2.7
|
|
build:
|
|
pre_ci_boot:
|
|
options: "--privileged=false --net=bridge"
|
|
ci:
|
|
- test/utils/shippable/ci.sh
|
|
|
|
integrations:
|
|
notifications:
|
|
- integrationName: email
|
|
type: email
|
|
on_success: never
|
|
on_failure: never
|
|
on_start: never
|
|
on_pull_request: never
|
|
- integrationName: irc
|
|
type: irc
|
|
recipients:
|
|
- "chat.freenode.net#ansible-notices"
|
|
on_success: change
|
|
on_failure: always
|
|
on_start: never
|
|
on_pull_request: always
|
|
- integrationName: slack
|
|
type: slack
|
|
recipients:
|
|
- "#shippable"
|
|
on_success: change
|
|
on_failure: always
|
|
on_start: never
|
|
on_pull_request: never
|