Sha256: e8beb971f106854532879b8df617c0334935d34a42e79a178ae84b3d610d0f42

Contents?: true

Size: 1.85 KB

Versions: 4

Compression:

Stored size: 1.85 KB

Contents

aliases:
  - &save-mac-bundler-cache
    key: bundle_mac
    paths:
      - vendor/bundle

  - &restore-mac-bundler-cache
    key: bundle_mac

  - &bundler-environment
    BUNDLE_JOBS: 3
    BUNDLE_RETRY: 3
    BUNDLE_PATH: vendor/bundle

version: 2
jobs:

  swift:
    macos:
      xcode: "11.4.0"
    environment: *bundler-environment
    steps:
      - checkout
      - restore_cache: *restore-mac-bundler-cache
      - run: bundle install
      - run: git submodule update --init --recursive
      - run: bundle exec rake swift_spec
      - save_cache: *save-mac-bundler-cache

  objc:
    macos:
      xcode: "11.4.0"
    environment: *bundler-environment
    steps:
      - checkout
      - restore_cache: *restore-mac-bundler-cache
      - run: bundle install
      - run: git submodule update --init --recursive
      - run: bundle exec rake objc_spec
      - save_cache: *save-mac-bundler-cache

  cocoapods:
    macos:
      xcode: "11.4.0"
    environment: *bundler-environment
    steps:
      - checkout
      - restore_cache:
          key: cocoapods
      - restore_cache: *restore-mac-bundler-cache
      - run: bundle install
      - run: git submodule update --init --recursive
      - run: bundle exec rake cocoapods_spec
      - save_cache:
          key: cocoapods
          paths:
            - ~/.cocoapods
      - save_cache: *save-mac-bundler-cache

  danger_and_rubocop:
    docker:
      - image: circleci/ruby:2.4-node
        environment: *bundler-environment
    steps:
      - checkout
      - restore_cache:
          key: bundle_linux
      - run: bundle install
      - run: bundle exec danger --verbose || true
      - run: bundle exec rake rubocop
      - save_cache:
          key: bundle_linux
          paths:
            - vendor/bundle

workflows:
  version: 2
  workflow:
    jobs:
      - swift
      - objc
      - cocoapods
      - danger_and_rubocop

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jazzy-0.13.5 .circleci/config.yml
jazzy-0.13.4 .circleci/config.yml
jazzy-0.13.3 .circleci/config.yml
jazzy-0.13.2 .circleci/config.yml