├── .editorconfig ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SUPPORT.md ├── cache └── bower.sh ├── deployments ├── aptible.sh ├── aws_s3.sh ├── cloud_foundry.sh ├── eb_deployment_check.sh ├── elastic_beanstalk.sh ├── engine_yard.sh ├── envoyer.sh ├── firebase.sh ├── git_push.sh ├── heroku.sh ├── meteor.sh ├── shopify.sh └── strongloop.sh ├── languages ├── dart.sh ├── elixir.sh ├── erlang.sh ├── go.sh ├── r.sh └── rust.sh ├── notifications ├── bugsnag.sh ├── datadog.sh ├── librato.sh ├── new_relic.sh ├── rollbar.sh └── slack.sh ├── packages ├── awscliv2.sh ├── bats.sh ├── boot.sh ├── browserstack_local.sh ├── chrome-beta.sh ├── chrome.sh ├── chromedriver.sh ├── cockroachdb.sh ├── dynamodb.sh ├── elasticsearch.sh ├── ffmpeg.sh ├── firefox.sh ├── flynn.sh ├── freetds.sh ├── geckodriver.sh ├── gemnasium.sh ├── ghostscript.sh ├── git-lfs.sh ├── git.sh ├── google-cloud-sdk.sh ├── gradle.sh ├── hugo.sh ├── imagemagick.sh ├── influxdb.sh ├── jx.sh ├── lftp.sh ├── libsodium.sh ├── maven.sh ├── meteor.sh ├── mongodb.sh ├── mysql-5.7.sh ├── mysql-8.0.sh ├── neo4j.sh ├── openssl.sh ├── phalcon.sh ├── phantomjs.sh ├── poppler.sh ├── qpdf.sh ├── rabbitmq.sh ├── rabbitmqadmin.sh ├── redis.sh ├── sauce_connect.sh ├── sbt.sh ├── sdkman.sh ├── selenium_server.sh ├── shellcheck.sh ├── stack.sh ├── tigervnc.sh ├── tomcat.sh └── webp.sh ├── tests ├── cache │ └── bower.bats ├── languages.sh ├── packages.sh ├── packages │ ├── awscliv2.bats │ ├── cockroachdb.bats │ ├── elasticsearch_1.bats │ ├── elasticsearch_2.bats │ ├── elasticsearch_5.bats │ ├── elasticsearch_6.bats │ ├── elasticsearch_7.bats │ ├── elasticsearch_8.bats │ ├── elasticsearch_functions.bash │ ├── ffmpeg.bats │ ├── geckodriver.bats │ ├── hugo.bats │ ├── phantomjs.bats │ ├── rabbitmq.bats │ ├── rabbitmqadmin.bats │ ├── redis_5.bats │ ├── redis_6.bats │ ├── redis_7.bats │ ├── redis_functions.bash │ ├── sdkman.bats │ └── tigervnc.bats ├── setup.sh ├── shellcheck.sh └── utilities │ ├── check_port.bats │ ├── check_url.bats │ ├── ensure_called.bats │ └── random_timezone.bats └── utilities ├── check_port.sh ├── check_url.sh ├── codeship_restart_build.sh ├── ensure_called.sh └── random_timezone.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X specific 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /cache/bower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/cache/bower.sh -------------------------------------------------------------------------------- /deployments/aptible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/aptible.sh -------------------------------------------------------------------------------- /deployments/aws_s3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/aws_s3.sh -------------------------------------------------------------------------------- /deployments/cloud_foundry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/cloud_foundry.sh -------------------------------------------------------------------------------- /deployments/eb_deployment_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/eb_deployment_check.sh -------------------------------------------------------------------------------- /deployments/elastic_beanstalk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/elastic_beanstalk.sh -------------------------------------------------------------------------------- /deployments/engine_yard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/engine_yard.sh -------------------------------------------------------------------------------- /deployments/envoyer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/envoyer.sh -------------------------------------------------------------------------------- /deployments/firebase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/firebase.sh -------------------------------------------------------------------------------- /deployments/git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/git_push.sh -------------------------------------------------------------------------------- /deployments/heroku.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/heroku.sh -------------------------------------------------------------------------------- /deployments/meteor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/meteor.sh -------------------------------------------------------------------------------- /deployments/shopify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/shopify.sh -------------------------------------------------------------------------------- /deployments/strongloop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/deployments/strongloop.sh -------------------------------------------------------------------------------- /languages/dart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/languages/dart.sh -------------------------------------------------------------------------------- /languages/elixir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/languages/elixir.sh -------------------------------------------------------------------------------- /languages/erlang.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/languages/erlang.sh -------------------------------------------------------------------------------- /languages/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/languages/go.sh -------------------------------------------------------------------------------- /languages/r.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/languages/r.sh -------------------------------------------------------------------------------- /languages/rust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/languages/rust.sh -------------------------------------------------------------------------------- /notifications/bugsnag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/notifications/bugsnag.sh -------------------------------------------------------------------------------- /notifications/datadog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/notifications/datadog.sh -------------------------------------------------------------------------------- /notifications/librato.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/notifications/librato.sh -------------------------------------------------------------------------------- /notifications/new_relic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/notifications/new_relic.sh -------------------------------------------------------------------------------- /notifications/rollbar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/notifications/rollbar.sh -------------------------------------------------------------------------------- /notifications/slack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/notifications/slack.sh -------------------------------------------------------------------------------- /packages/awscliv2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/awscliv2.sh -------------------------------------------------------------------------------- /packages/bats.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/bats.sh -------------------------------------------------------------------------------- /packages/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/boot.sh -------------------------------------------------------------------------------- /packages/browserstack_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/browserstack_local.sh -------------------------------------------------------------------------------- /packages/chrome-beta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/chrome-beta.sh -------------------------------------------------------------------------------- /packages/chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/chrome.sh -------------------------------------------------------------------------------- /packages/chromedriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/chromedriver.sh -------------------------------------------------------------------------------- /packages/cockroachdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/cockroachdb.sh -------------------------------------------------------------------------------- /packages/dynamodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/dynamodb.sh -------------------------------------------------------------------------------- /packages/elasticsearch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/elasticsearch.sh -------------------------------------------------------------------------------- /packages/ffmpeg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/ffmpeg.sh -------------------------------------------------------------------------------- /packages/firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/firefox.sh -------------------------------------------------------------------------------- /packages/flynn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/flynn.sh -------------------------------------------------------------------------------- /packages/freetds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/freetds.sh -------------------------------------------------------------------------------- /packages/geckodriver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/geckodriver.sh -------------------------------------------------------------------------------- /packages/gemnasium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/gemnasium.sh -------------------------------------------------------------------------------- /packages/ghostscript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/ghostscript.sh -------------------------------------------------------------------------------- /packages/git-lfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/git-lfs.sh -------------------------------------------------------------------------------- /packages/git.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/git.sh -------------------------------------------------------------------------------- /packages/google-cloud-sdk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/google-cloud-sdk.sh -------------------------------------------------------------------------------- /packages/gradle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/gradle.sh -------------------------------------------------------------------------------- /packages/hugo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/hugo.sh -------------------------------------------------------------------------------- /packages/imagemagick.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/imagemagick.sh -------------------------------------------------------------------------------- /packages/influxdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/influxdb.sh -------------------------------------------------------------------------------- /packages/jx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/jx.sh -------------------------------------------------------------------------------- /packages/lftp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/lftp.sh -------------------------------------------------------------------------------- /packages/libsodium.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/libsodium.sh -------------------------------------------------------------------------------- /packages/maven.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/maven.sh -------------------------------------------------------------------------------- /packages/meteor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/meteor.sh -------------------------------------------------------------------------------- /packages/mongodb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/mongodb.sh -------------------------------------------------------------------------------- /packages/mysql-5.7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/mysql-5.7.sh -------------------------------------------------------------------------------- /packages/mysql-8.0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/mysql-8.0.sh -------------------------------------------------------------------------------- /packages/neo4j.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/neo4j.sh -------------------------------------------------------------------------------- /packages/openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/openssl.sh -------------------------------------------------------------------------------- /packages/phalcon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/phalcon.sh -------------------------------------------------------------------------------- /packages/phantomjs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/phantomjs.sh -------------------------------------------------------------------------------- /packages/poppler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/poppler.sh -------------------------------------------------------------------------------- /packages/qpdf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/qpdf.sh -------------------------------------------------------------------------------- /packages/rabbitmq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/rabbitmq.sh -------------------------------------------------------------------------------- /packages/rabbitmqadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/rabbitmqadmin.sh -------------------------------------------------------------------------------- /packages/redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/redis.sh -------------------------------------------------------------------------------- /packages/sauce_connect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/sauce_connect.sh -------------------------------------------------------------------------------- /packages/sbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/sbt.sh -------------------------------------------------------------------------------- /packages/sdkman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/sdkman.sh -------------------------------------------------------------------------------- /packages/selenium_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/selenium_server.sh -------------------------------------------------------------------------------- /packages/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/shellcheck.sh -------------------------------------------------------------------------------- /packages/stack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/stack.sh -------------------------------------------------------------------------------- /packages/tigervnc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/tigervnc.sh -------------------------------------------------------------------------------- /packages/tomcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/tomcat.sh -------------------------------------------------------------------------------- /packages/webp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/packages/webp.sh -------------------------------------------------------------------------------- /tests/cache/bower.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/cache/bower.bats -------------------------------------------------------------------------------- /tests/languages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/languages.sh -------------------------------------------------------------------------------- /tests/packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages.sh -------------------------------------------------------------------------------- /tests/packages/awscliv2.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/awscliv2.bats -------------------------------------------------------------------------------- /tests/packages/cockroachdb.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/cockroachdb.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_1.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_1.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_2.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_2.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_5.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_5.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_6.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_6.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_7.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_7.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_8.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_8.bats -------------------------------------------------------------------------------- /tests/packages/elasticsearch_functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/elasticsearch_functions.bash -------------------------------------------------------------------------------- /tests/packages/ffmpeg.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/ffmpeg.bats -------------------------------------------------------------------------------- /tests/packages/geckodriver.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/geckodriver.bats -------------------------------------------------------------------------------- /tests/packages/hugo.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/hugo.bats -------------------------------------------------------------------------------- /tests/packages/phantomjs.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/phantomjs.bats -------------------------------------------------------------------------------- /tests/packages/rabbitmq.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/rabbitmq.bats -------------------------------------------------------------------------------- /tests/packages/rabbitmqadmin.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/rabbitmqadmin.bats -------------------------------------------------------------------------------- /tests/packages/redis_5.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/redis_5.bats -------------------------------------------------------------------------------- /tests/packages/redis_6.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/redis_6.bats -------------------------------------------------------------------------------- /tests/packages/redis_7.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/redis_7.bats -------------------------------------------------------------------------------- /tests/packages/redis_functions.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/redis_functions.bash -------------------------------------------------------------------------------- /tests/packages/sdkman.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/sdkman.bats -------------------------------------------------------------------------------- /tests/packages/tigervnc.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/packages/tigervnc.bats -------------------------------------------------------------------------------- /tests/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/setup.sh -------------------------------------------------------------------------------- /tests/shellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/shellcheck.sh -------------------------------------------------------------------------------- /tests/utilities/check_port.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/utilities/check_port.bats -------------------------------------------------------------------------------- /tests/utilities/check_url.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/utilities/check_url.bats -------------------------------------------------------------------------------- /tests/utilities/ensure_called.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/utilities/ensure_called.bats -------------------------------------------------------------------------------- /tests/utilities/random_timezone.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/tests/utilities/random_timezone.bats -------------------------------------------------------------------------------- /utilities/check_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/utilities/check_port.sh -------------------------------------------------------------------------------- /utilities/check_url.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/utilities/check_url.sh -------------------------------------------------------------------------------- /utilities/codeship_restart_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/utilities/codeship_restart_build.sh -------------------------------------------------------------------------------- /utilities/ensure_called.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/utilities/ensure_called.sh -------------------------------------------------------------------------------- /utilities/random_timezone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeship/scripts/HEAD/utilities/random_timezone.sh --------------------------------------------------------------------------------