2019-01-23 21:47:42 -07:00
|
|
|
---
|
2019-02-01 11:27:03 -07:00
|
|
|
kind: pipeline
|
2019-04-14 12:27:36 +01:00
|
|
|
name: Lint
|
2019-02-01 11:40:23 -07:00
|
|
|
|
2019-02-01 13:18:24 -07:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
2019-02-01 11:40:23 -07:00
|
|
|
steps:
|
2019-04-14 12:27:36 +01:00
|
|
|
- name: shellcheck
|
2019-11-26 18:53:07 +02:00
|
|
|
image: koalaman/shellcheck-alpine:v0.6.0
|
2019-02-01 11:40:23 -07:00
|
|
|
commands:
|
|
|
|
- shellcheck -s sh -f checkstyle bootstrap-salt.sh
|
2019-02-01 11:27:03 -07:00
|
|
|
|
2019-12-13 16:55:25 -07:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: Arch
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
|
|
|
- sh -c 't=0; echo Sleeping 0 seconds; sleep 0'
|
|
|
|
|
|
|
|
- name: create
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- echo 'Waiting for docker to start'
|
|
|
|
- sleep 20
|
|
|
|
- docker ps -a
|
|
|
|
- bundle exec kitchen create arch
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
|
|
|
- name: Py2 2018.3(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2018-3-arch
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
|
|
|
- name: Py2 2019.2(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2019-2-arch
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-arch
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-12-13 16:55:25 -07:00
|
|
|
services:
|
|
|
|
- name: docker
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- Lint
|
|
|
|
|
2019-12-11 09:09:51 +00:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: Amazon 2
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=120; echo Sleeping 120 seconds; sleep 120'
|
2019-12-11 09:09:51 +00:00
|
|
|
|
|
|
|
- name: create
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-12-11 09:09:51 +00:00
|
|
|
- docker ps -a
|
|
|
|
- bundle exec kitchen create amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
|
|
|
- name: Py2 2018.3(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2018-3-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
|
|
|
- name: Py2 2019.2(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2019-2-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-12-11 09:09:51 +00:00
|
|
|
- name: Py2 2018.3(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-2018-3-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
|
|
|
- name: Py2 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-2019-2-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-12-11 09:09:51 +00:00
|
|
|
- name: Py3 2019.2(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-2019-2-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-12-11 09:09:51 +00:00
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-amazon-2
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-12-11 09:09:51 +00:00
|
|
|
services:
|
|
|
|
- name: docker
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- Lint
|
|
|
|
|
2019-04-06 17:27:11 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-04-07 10:08:11 +01:00
|
|
|
name: CentOS 6
|
2019-04-06 17:27:11 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=108; echo Sleeping 108 seconds; sleep 108'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-05-15 15:15:10 +01:00
|
|
|
- bundle exec kitchen create centos-6
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2018-3-centos-6
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:27:11 +01:00
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2019-2-centos-6
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:27:11 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-centos-6
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-2018-3-centos-6
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2019.2(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-2019-2-centos-6
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:27:11 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-centos-6
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 17:27:11 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 17:27:11 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-04-07 10:08:11 +01:00
|
|
|
name: CentOS 7
|
2019-04-06 17:27:11 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=288; echo Sleeping 288 seconds; sleep 288'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-05-15 15:15:10 +01:00
|
|
|
- bundle exec kitchen create centos-7
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-05-15 15:00:30 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-30 17:01:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2018-3-centos-7
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:27:11 +01:00
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2019-2-centos-7
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-centos-7
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2018-3-centos-7
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2019.2(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2019-2-centos-7
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:27:11 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-centos-7
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2018-3-centos-7
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-centos-7
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-centos-7
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py3 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py3-stable-2018-3-centos-7
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-centos-7
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-centos-7
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-10-14 11:51:32 -06:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: CentOS 8
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=120; echo Sleeping 120 seconds; sleep 120'
|
2019-10-14 11:51:32 -06:00
|
|
|
|
|
|
|
- name: create
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-10-14 11:51:32 -06:00
|
|
|
- docker ps -a
|
|
|
|
- bundle exec kitchen create centos-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-centos-8
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-centos-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-centos-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-centos-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-14 11:51:32 -06:00
|
|
|
services:
|
|
|
|
- name: docker
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- Lint
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-04-07 10:08:11 +01:00
|
|
|
name: Debian 8
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=216; echo Sleeping 216 seconds; sleep 216'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-05-15 15:15:10 +01:00
|
|
|
- bundle exec kitchen create debian-8
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2018-3-debian-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-2019-2-debian-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-debian-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2018.3(Stable)
|
2019-10-31 10:22:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2018-3-debian-8
|
2019-10-31 10:22:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2019.2(Stable)
|
2019-10-31 10:22:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2019-2-debian-8
|
2019-10-31 10:22:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-debian-8
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-04-07 10:08:11 +01:00
|
|
|
name: Debian 9
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=504; echo Sleeping 504 seconds; sleep 504'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-05-15 15:15:10 +01:00
|
|
|
- bundle exec kitchen create debian-9
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-05-15 15:00:30 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-30 17:01:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2018-3-debian-9
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 15:54:44 +01:00
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2019-2-debian-9
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-debian-9
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2018-3-debian-9
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2019.2(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2019-2-debian-9
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-debian-9
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2018-3-debian-9
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-debian-9
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-debian-9
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py3 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py3-stable-2018-3-debian-9
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-debian-9
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-debian-9
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-10-14 11:51:32 -06:00
|
|
|
name: Debian 10
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=120; echo Sleeping 120 seconds; sleep 120'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-10-14 11:51:32 -06:00
|
|
|
- bundle exec kitchen create debian-10
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-31 17:18:47 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-debian-10
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-debian-10
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 17:18:47 -04:00
|
|
|
- name: Py3 2019.2(Stable)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen test py3-stable-2019-2-debian-10
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-debian-10
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 17:18:47 -04:00
|
|
|
services:
|
|
|
|
- name: docker
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- Lint
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: Fedora 30
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=144; echo Sleeping 144 seconds; sleep 144'
|
2019-10-31 17:18:47 -04:00
|
|
|
|
|
|
|
- name: create
|
2019-10-31 10:22:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-10-31 17:18:47 -04:00
|
|
|
- docker ps -a
|
|
|
|
- bundle exec kitchen create fedora-30
|
2019-10-31 10:22:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-31 17:18:47 -04:00
|
|
|
- name: Py3 2018.3(Git)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen test py3-git-2018-3-fedora-30
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 17:18:47 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
2019-10-31 17:18:47 -04:00
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
2019-04-14 15:18:41 +01:00
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-fedora-30
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
2019-10-31 17:18:47 -04:00
|
|
|
- create
|
2019-05-15 15:00:30 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-fedora-30
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-12-17 11:19:34 -07:00
|
|
|
- name: Py3 2018.3(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2018-3-fedora-30
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-fedora-30
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-fedora-30
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-11-01 16:25:24 -04:00
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
name: Fedora 31
|
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=54; echo Sleeping 54 seconds; sleep 54'
|
2019-11-01 16:25:24 -04:00
|
|
|
|
|
|
|
- name: create
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- echo 'Waiting for docker to start'
|
|
|
|
- sleep 20
|
|
|
|
- docker ps -a
|
|
|
|
- bundle exec kitchen create fedora-31
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-11-04 13:43:43 -07:00
|
|
|
- name: Py3 2018.3(Git)
|
2019-11-01 16:25:24 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-11-04 13:43:43 -07:00
|
|
|
- bundle exec kitchen test py3-git-2018-3-fedora-31
|
2019-11-01 16:25:24 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-11-04 13:43:43 -07:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-11-01 16:25:24 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-11-04 13:43:43 -07:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-fedora-31
|
2019-11-01 16:25:24 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-fedora-31
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-11-01 16:25:24 -04:00
|
|
|
services:
|
|
|
|
- name: docker
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- Lint
|
|
|
|
|
2019-04-06 17:27:11 +01:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2020-01-06 14:13:45 -07:00
|
|
|
name: Opensuse 15.1
|
2019-04-06 15:54:44 +01:00
|
|
|
|
2019-04-06 17:27:11 +01:00
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=36; echo Sleeping 36 seconds; sleep 36'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen create opensuse-15
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen test py2-git-2018-3-opensuse-15
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-04-07 10:48:07 +01:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 17:18:47 -04:00
|
|
|
- bundle exec kitchen test py2-git-2019-2-opensuse-15
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-opensuse-15
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-04-07 10:08:11 +01:00
|
|
|
name: Ubuntu 16.04
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2020-02-12 15:41:23 +00:00
|
|
|
- sh -c 't=72; echo Sleeping 72 seconds; sleep 72'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-05-15 15:15:10 +01:00
|
|
|
- bundle exec kitchen create ubuntu-1604
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-05-15 15:00:30 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-30 17:01:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2018-3-ubuntu-1604
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2019-2-ubuntu-1604
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-ubuntu-1604
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2018-3-ubuntu-1604
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2019.2(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2019-2-ubuntu-1604
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-ubuntu-1604
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2018-3-ubuntu-1604
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-ubuntu-1604
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-ubuntu-1604
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py3 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py3-stable-2018-3-ubuntu-1604
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-ubuntu-1604
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-ubuntu-1604
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-04-07 10:08:11 +01:00
|
|
|
name: Ubuntu 18.04
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
2019-04-14 17:16:01 +01:00
|
|
|
- name: throttle-build
|
|
|
|
image: alpine
|
|
|
|
commands:
|
2019-10-14 11:51:32 -06:00
|
|
|
- sh -c 't=0; echo Sleeping 0 seconds; sleep 0'
|
2019-04-14 17:16:01 +01:00
|
|
|
|
2019-05-15 15:15:10 +01:00
|
|
|
- name: create
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-14 11:51:32 -06:00
|
|
|
- echo 'Waiting for docker to start'
|
2019-12-13 16:55:25 -07:00
|
|
|
- sleep 20
|
2019-04-14 15:18:41 +01:00
|
|
|
- docker ps -a
|
2019-05-15 15:15:10 +01:00
|
|
|
- bundle exec kitchen create ubuntu-1804
|
2019-05-15 15:00:30 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py2 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-05-15 15:00:30 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-30 17:01:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2018-3-ubuntu-1804
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 15:54:44 +01:00
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py2 2019.2(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py2-git-2019-2-ubuntu-1804
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-git-3000-ubuntu-1804
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2018-3-ubuntu-1804
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py2 2019.2(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py2-stable-2019-2-ubuntu-1804
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 17:15:43 +01:00
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py2 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py2-stable-3000-ubuntu-1804
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2018.3(Git)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2018-3-ubuntu-1804
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 18:40:04 +01:00
|
|
|
|
2019-10-31 14:52:42 -04:00
|
|
|
- name: Py3 2019.2(Git)
|
2019-10-30 17:01:02 -04:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 14:52:42 -04:00
|
|
|
- bundle exec kitchen test py3-git-2019-2-ubuntu-1804
|
2019-10-30 17:01:02 -04:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Git)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-git-3000-ubuntu-1804
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-10-31 10:22:02 -04:00
|
|
|
- name: Py3 2018.3(Stable)
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
2019-10-31 10:22:02 -04:00
|
|
|
- bundle exec kitchen test py3-stable-2018-3-ubuntu-1804
|
2019-04-14 15:18:41 +01:00
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
2019-04-06 18:40:04 +01:00
|
|
|
depends_on:
|
2019-04-14 17:16:01 +01:00
|
|
|
- throttle-build
|
2019-05-15 15:15:10 +01:00
|
|
|
- create
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-10-30 17:01:02 -04:00
|
|
|
- name: Py3 2019.2(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-2019-2-ubuntu-1804
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2020-02-12 15:41:23 +00:00
|
|
|
- name: Py3 3000(Stable)
|
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
|
|
|
commands:
|
|
|
|
- pip install -U pip
|
|
|
|
- pip install -r tests/requirements.txt
|
|
|
|
- bundle install --with docker --without opennebula ec2 windows vagrant
|
|
|
|
- bundle exec kitchen test py3-stable-3000-ubuntu-1804
|
|
|
|
environment:
|
|
|
|
DOCKER_HOST: tcp://docker:2375
|
|
|
|
depends_on:
|
|
|
|
- throttle-build
|
|
|
|
- create
|
|
|
|
|
2019-04-14 15:18:41 +01:00
|
|
|
services:
|
|
|
|
- name: docker
|
2019-05-15 16:41:38 +01:00
|
|
|
image: saltstack/drone-salt-bootstrap-testing
|
2019-04-14 15:18:41 +01:00
|
|
|
command:
|
|
|
|
- --storage-driver=overlay2
|
|
|
|
privileged: true
|
|
|
|
|
2019-04-14 12:29:42 +01:00
|
|
|
node:
|
|
|
|
project: open
|
|
|
|
|
2019-04-06 13:17:01 +01:00
|
|
|
depends_on:
|
2019-04-14 12:31:15 +01:00
|
|
|
- Lint
|
2019-04-06 13:17:01 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: signature
|
2020-02-24 15:24:54 +00:00
|
|
|
hmac: 541f7de01e4a4321197c3667ecc63abf147d1f7133a819e7bff1cf64ca83a4e0
|
2019-04-06 13:17:01 +01:00
|
|
|
|
2019-01-23 21:47:42 -07:00
|
|
|
...
|