Sha256: 0c8f6450cae0aab696e674db3b612bce6883bf663b7e4faee89f7ef3f5d8e4d2
Contents?: true
Size: 1.27 KB
Versions: 11
Compression:
Stored size: 1.27 KB
Contents
--- version: 2 jobs: build: machine: true steps: - checkout - run: name: Install Docker Compose command: | curl -L https://github.com/docker/compose/releases/download/1.19.0/docker-compose-`uname -s`-`uname -m` > ~/docker-compose chmod +x ~/docker-compose sudo mv ~/docker-compose /usr/local/bin/docker-compose - restore_cache: keys: - bundle-{{ checksum "Gemfile" }}-{{ checksum "valkyrie.gemspec" }} - bundle- # used if checksum fails - run: sudo apt-get update && sudo apt-get install -y libpq-dev - run: name: Install dependencies command: bundle install --path=vendor/bundle --jobs 4 --retry 3 - save_cache: key: bundle-{{ checksum "Gemfile" }}-{{ checksum "valkyrie.gemspec" }} paths: - "vendor/bundle" - run: name: Run Rubocop command: bundle exec rake rubocop - run: name: Run Specs command: bundle exec rake docker:spec workflows: version: 2 build: jobs: - build nightly: triggers: - schedule: cron: "0 0 * * *" filters: branches: only: - master jobs: - build
Version data entries
11 entries across 11 versions & 1 rubygems