salt-bootstrap/.drone.yml

1123 lines
26 KiB
YAML
Raw Normal View History

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-02-01 11:40:23 -07:00
image: koalaman/shellcheck-alpine
commands:
- shellcheck -s sh -f checkstyle bootstrap-salt.sh
2019-02-01 11:27:03 -07:00
2019-01-24 12:42:16 -07:00
---
2019-02-01 11:27:03 -07:00
kind: pipeline
2019-04-07 10:08:11 +01:00
name: Arch
2019-02-01 13:18:24 -07:00
platform:
os: linux
arch: amd64
2019-02-01 11:27:03 -07:00
2019-02-01 11:40:23 -07:00
steps:
2019-04-14 17:16:01 +01:00
- name: throttle-build
image: alpine
commands:
- "sh -c 't=0; echo Sleeping 0 seconds; sleep 0'"
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
2019-04-14 15:18:41 +01:00
- docker ps -a
2019-05-15 15:15:10 +01:00
- bundle exec kitchen create arch
2019-05-15 15:00:30 +01:00
environment:
DOCKER_HOST: tcp://docker:2375
depends_on:
- throttle-build
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-arch
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 2018.3(Git)
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-arch
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)
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-arch
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-14 15:18:41 +01:00
services:
- name: docker
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 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:
- "sh -c 't=90; echo Sleeping 90 seconds; sleep 90'"
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-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 2018.3(Git)
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)
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
2019-04-07 10:48:07 +01:00
- name: Py2 2017.7(Stable)
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-2017-7-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 2018.3(Stable)
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)
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
2019-04-14 15:18:41 +01:00
services:
- name: docker
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:
- "sh -c 't=120; echo Sleeping 120 seconds; sleep 120'"
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-centos-7
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 2018.3(Git)
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-7
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)
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-7
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-04-07 10:48:07 +01:00
- name: Py2 2017.7(Stable)
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-2017-7-centos-7
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 2018.3(Stable)
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-7
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)
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-7
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-04-14 15:18:41 +01:00
services:
- name: docker
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 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:
- "sh -c 't=150; echo Sleeping 150 seconds; sleep 150'"
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-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 15:54:44 +01:00
2019-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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)
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
2019-04-07 10:48:07 +01:00
- name: Py2 2017.7(Stable)
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-2017-7-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
2019-04-07 10:48:07 +01:00
- name: Py2 2018.3(Stable)
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-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(Stable)
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-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 13:17:01 +01:00
2019-04-14 15:18:41 +01:00
services:
- name: docker
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:
- "sh -c 't=180; echo Sleeping 180 seconds; sleep 180'"
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-debian-9
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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-9
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)
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-9
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-04-07 10:48:07 +01:00
- name: Py2 2017.7(Stable)
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-2017-7-debian-9
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Stable)
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-debian-9
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)
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-debian-9
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-04-14 15:18:41 +01:00
services:
- name: docker
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: Fedora 28
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-04-14 18:58:51 +01:00
- "sh -c 't=90; echo Sleeping 90 seconds; sleep 90'"
2019-04-14 17:16:01 +01:00
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
2019-04-14 15:18:41 +01:00
- docker ps -a
2019-05-15 15:15:10 +01:00
- bundle exec kitchen create fedora-28
2019-05-15 15:00:30 +01:00
environment:
DOCKER_HOST: tcp://docker:2375
depends_on:
- throttle-build
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-fedora-28
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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-fedora-28
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)
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-fedora-28
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-04-14 15:18:41 +01:00
services:
- name: docker
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 13:17:01 +01:00
2019-04-06 17:27:11 +01:00
---
kind: pipeline
2019-04-07 10:08:11 +01:00
name: Fedora 29
2019-04-06 15:54:44 +01:00
2019-04-06 17:27:11 +01:00
platform:
os: linux
arch: amd64
2019-04-06 17:15:43 +01:00
2019-04-06 17:27:11 +01:00
steps:
2019-04-14 17:16:01 +01:00
- name: throttle-build
image: alpine
commands:
2019-04-14 18:58:51 +01:00
- "sh -c 't=75; echo Sleeping 75 seconds; sleep 75'"
2019-04-14 17:16:01 +01:00
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
2019-04-14 15:18:41 +01:00
- docker ps -a
2019-05-15 15:15:10 +01:00
- bundle exec kitchen create fedora-29
2019-05-15 15:00:30 +01:00
environment:
DOCKER_HOST: tcp://docker:2375
depends_on:
- throttle-build
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-fedora-29
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 2018.3(Git)
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-fedora-29
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)
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-fedora-29
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-04-14 15:18:41 +01:00
services:
- name: docker
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: Opensuse 15.0
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-04-14 18:58:51 +01:00
- "sh -c 't=60; echo Sleeping 60 seconds; sleep 60'"
2019-04-14 17:16:01 +01:00
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
2019-04-14 15:18:41 +01:00
- docker ps -a
2019-05-15 15:15:10 +01: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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-opensuse-15
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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-opensuse-15
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)
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-opensuse-15
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-04-14 15:18:41 +01:00
services:
- name: docker
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 13:17:01 +01:00
2019-04-06 17:27:11 +01:00
---
kind: pipeline
2019-04-07 10:08:11 +01:00
name: Opensuse 42.3
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:
2019-04-14 18:58:51 +01:00
- "sh -c 't=45; echo Sleeping 45 seconds; sleep 45'"
2019-04-14 17:16:01 +01:00
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
2019-04-14 15:18:41 +01:00
- docker ps -a
2019-05-15 15:15:10 +01:00
- bundle exec kitchen create opensuse-42
2019-05-15 15:00:30 +01:00
environment:
DOCKER_HOST: tcp://docker:2375
depends_on:
- throttle-build
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-opensuse-42
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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-opensuse-42
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)
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-opensuse-42
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-04-14 15:18:41 +01:00
services:
- name: docker
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:
2019-04-14 18:58:51 +01:00
- "sh -c 't=30; echo Sleeping 30 seconds; sleep 30'"
2019-04-14 17:16:01 +01:00
2019-05-15 15:15:10 +01:00
- name: create
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-ubuntu-1604
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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-ubuntu-1604
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)
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-ubuntu-1604
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-04-07 10:48:07 +01:00
- name: Py2 2017.7(Stable)
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-2017-7-ubuntu-1604
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Stable)
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-ubuntu-1604
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)
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-ubuntu-1604
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-04-14 15:18:41 +01:00
services:
- name: docker
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-04-14 18:58:51 +01: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
image: saltstack/drone-salt-bootstrap-testing
2019-04-14 15:18:41 +01:00
commands:
- bundle install --with docker --without opennebula ec2 windows vagrant
- "echo 'Waiting for docker to start'"
2019-04-14 17:16:01 +01:00
- sleep 10
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
- name: Py2 2017.7(Git)
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-04-14 15:18:41 +01:00
- bundle exec kitchen test py2-git-2017-7-ubuntu-1804
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Git)
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-ubuntu-1804
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)
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-ubuntu-1804
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-04-07 10:48:07 +01:00
- name: Py2 2017.7(Stable)
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-2017-7-ubuntu-1804
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-04-07 10:48:07 +01:00
- name: Py2 2018.3(Stable)
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-ubuntu-1804
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)
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-ubuntu-1804
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-04-14 15:18:41 +01:00
services:
- name: docker
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
hmac: b7e8b81af5c37f4432730a739032d9bbfb32d125b7e55ca8e94d0c08f8e40e59
2019-04-06 13:17:01 +01:00
2019-01-23 21:47:42 -07:00
...