diff --git a/.drone.jsonnet b/.drone.jsonnet index cdc29eb..16d41a5 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -58,10 +58,7 @@ local PipelineDeployment = { }, commands: [ "/bin/bash /docker-entrypoint.sh", - "molecule create --scenario-name ec2-centos-7", - "molecule converge --scenario-name ec2-centos-7", - "molecule verify --scenario-name ec2-centos-7", - "molecule destroy --scenario-name ec2-centos-7", + "molecule test --scenario-name ec2-centos-7", ], }, ], diff --git a/.drone.yml b/.drone.yml index 6cd8351..f667cae 100644 --- a/.drone.yml +++ b/.drone.yml @@ -55,10 +55,7 @@ steps: image: xoxys/molecule:ec2-linux-amd64 commands: - /bin/bash /docker-entrypoint.sh - - molecule create --scenario-name ec2-centos-7 - - molecule converge --scenario-name ec2-centos-7 - - molecule verify --scenario-name ec2-centos-7 - - molecule destroy --scenario-name ec2-centos-7 + - molecule test --scenario-name ec2-centos-7 environment: ANSIBLE_ROLES_PATH: /drone/src AWS_ACCESS_KEY_ID: @@ -114,6 +111,6 @@ depends_on: --- kind: signature -hmac: 8a34a58e0f7db79560f68ae0dbcbcb18411fe83d682b15351c6fd13590180d19 +hmac: f73d41474f794c278748b25b2f60cfdb7e44be2a74346ab552d859d78a507800 ...