Sha256: 0c3e529f07eabd89dd251306c2afd783042b7c5cb85c14a390fdfc3a2ed41ce8

Contents?: true

Size: 1.14 KB

Versions: 4

Compression:

Stored size: 1.14 KB

Contents

# Ruby CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
#
version: 2
jobs:
  build:
    docker:
      - image: circleci/ruby:2.4.1

    working_directory: ~/repo

    steps:
      - checkout

      # We can't use restore_cache because we don't include a Gemfile.lock
      # in the Gem repo

      - run:
          name: install dependencies
          command: |
            bundle install --jobs=4 --retry=3 --path vendor/bundle

      # run tests!
      - run:
          name: run tests
          command: |
            mkdir log/
            mkdir /tmp/test-results
            TEST_FILES="$(circleci tests glob "spec/bing_ads_ruby_sdk/**/*_spec.rb" | \
              circleci tests split --split-by=timings)"

            bundle exec rspec \
              --format progress \
              --format RspecJunitFormatter \
              --out /tmp/test-results/rspec.xml \
              --format progress \
              $TEST_FILES

      # collect reports
      - store_test_results:
          path: /tmp/test-results
      - store_artifacts:
          path: /tmp/test-results
          destination: test-results

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bing_ads_ruby_sdk-1.3.1 .circleci/config.yml
bing_ads_ruby_sdk-1.3.0 .circleci/config.yml
bing_ads_ruby_sdk-1.2.0 .circleci/config.yml
bing_ads_ruby_sdk-1.1.1 .circleci/config.yml