Sha256: 0d82c736fa46e1664453b180f52cb8e2426affb3686d8c19155d357d94c19b66

Contents?: true

Size: 1.74 KB

Versions: 6

Compression:

Stored size: 1.74 KB

Contents

box: mizzy/serverspec-base
build:
  steps:
    - script:
        name: Make $HOME/.ssh directory
        code: mkdir -p $HOME/.ssh
    - create-file:
        name: Put SSH public key
        filename: $HOME/.ssh/id_rsa.pub
        overwrite: true
        hide-from-log: true
        content: $DIGITALOCEAN_SSH_KEY_PUBLIC
    - create-file:
        name: Put SSH private key
        filename: $HOME/.ssh/id_rsa
        overwrite: true
        hide-from-log: true
        content: $DIGITALOCEAN_SSH_KEY_PRIVATE
    - script:
        name: Run chmod 0400 $HOME/.ssh/id_rsa
        code: chmod 0400 $HOME/.ssh/id_rsa
    - script:
        name: Run setup.sh
        code: $WORKING_DIR/setup.sh
    - script:
        name: Run vagrant up centos65
        code: vagrant up centos65 --provider=digital_ocean
        cwd: $WORKING_DIR
    - script:
        name: Run vagrant reload centos65
        code: vagrant reload centos65
        cwd: $WORKING_DIR
    - script:
        name: Run rake spec:centos65
        code: rake spec:centos65
        cwd: $WORKING_DIR
    - script:
        name: Run vagrant up ubuntu1404
        code: vagrant up ubuntu1404 --provider=digital_ocean
        cwd: $WORKING_DIR
    - script:
        name: Run vagrant reload ubuntu1404
        code: vagrant reload ubuntu1404
        cwd: $WORKING_DIR
    - script:
        name: Run rake spec:ubuntu1404
        code: rake spec:ubuntu1404
        cwd: $WORKING_DIR

  after-steps:
    - script:
        name: Run vagrant destroy centos65
        code: vagrant destroy centos65 --force
        cwd: $WORKING_DIR
    - script:
        name: Run vagrant destroy ubuntu1404
        code: vagrant destroy ubuntu1404 --force
        cwd: $WORKING_DIR
    - 1syo/idobata-notify@0.1.1:
        token: $IDOBATA_TOKEN

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
serverspec-1.12.0 wercker.yml
specinfra-2.0.0.beta11 wercker.yml
specinfra-2.0.0.beta10 wercker.yml
specinfra-1.22.1 wercker.yml
specinfra-2.0.0.beta9 wercker.yml
serverspec-1.11.0 wercker.yml