Sha256: 3f2ee358ae8839c1a60b25189021c7abcd887aeeeb8cd771d9fac0f8d56e6407

Contents?: true

Size: 446 Bytes

Versions: 28

Compression:

Stored size: 446 Bytes

Contents

#!/bin/bash
set -euo pipefail

if [[ -n "${DEBUG:+set}" ]]; then
  set -x
fi

docker run --rm \
    --net=host \
    -v "$HOME/.kube":"/root/.kube" \
    -v "$HOME/.minikube":"$HOME/.minikube" \
    -v "$PWD":/usr/src/app \
    -v "/usr/bin/kubectl":"/usr/bin/kubectl" \
    -e CI=1 \
    -e CODECOV_TOKEN=$CODECOV_TOKEN \
    -e COVERAGE=1 \
    -e VERBOSE=1 \
    -e PARALLELISM=$PARALLELISM \
    -w /usr/src/app \
    ruby:2.3 \
    bin/test

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
kubernetes-deploy-0.28.0 bin/ci
kubernetes-deploy-0.27.0 bin/ci
kubernetes-deploy-0.26.7 bin/ci
kubernetes-deploy-0.26.6 bin/ci
kubernetes-deploy-0.26.5 bin/ci
kubernetes-deploy-0.26.4 bin/ci
kubernetes-deploy-0.26.3 bin/ci
kubernetes-deploy-0.26.2 bin/ci
kubernetes-deploy-0.26.1 bin/ci
kubernetes-deploy-0.26.0 bin/ci
kubernetes-deploy-0.25.0 bin/ci
kubernetes-deploy-0.24.0 bin/ci
kubernetes-deploy-0.23.0 bin/ci
kubernetes-deploy-0.22.0 bin/ci
kubernetes-deploy-0.21.1 bin/ci
kubernetes-deploy-0.21.0 bin/ci
kubernetes-deploy-0.20.6 bin/ci
kubernetes-deploy-0.20.5 bin/ci
kubernetes-deploy-0.20.4 bin/ci
kubernetes-deploy-0.20.3 bin/ci