Sha256: 685e2883ac96d0c9902f53cb7a4caba5db1fe2f7eb48a46c4a41525dfa5d6033
Contents?: true
Size: 446 Bytes
Versions: 13
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.4 \ bin/test
Version data entries
13 entries across 13 versions & 3 rubygems