This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "bundler/inline" | |
gemfile(true) do | |
source "https://rubygems.org" | |
git_source(:github) { |repo| "https://github.com/#{repo}.git" } | |
gem "rails", "5.2.4.2" | |
gem "sqlite3" | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Configuration via Environment Variables | |
# COVERAGE_BUCKET name of s3 bucket where coverage files will be sent. | |
# AWS_ACCESS_KEY_ID | |
# AWS_SECRET_ACCESS_KEY credentials for an IAM user with | |
# read/write permissions on the s3 bucket | |
# NON_COVERAGE_JOB_COUNT Number of semaphore tasks that do not generate coverage | |
# Defaults to 0 |