Sha256: a2ae9e9318a0a2f90a42472cecddf86d8ffce1af1da935401516b3af86fbd2a9

Contents?: true

Size: 1.2 KB

Versions: 3

Compression:

Stored size: 1.2 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


workflows:
  version: 2
  build:
    jobs:
      - build

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
bing_ads_ruby_sdk-1.3.4 .circleci/config.yml
bing_ads_ruby_sdk-1.3.3 .circleci/config.yml
bing_ads_ruby_sdk-1.3.2 .circleci/config.yml