Sha256: 5962612d3d4b14d9940f4411b197887231b9b33f7325cbbf7668b3b2b87f4509
Contents?: true
Size: 1.39 KB
Versions: 13
Compression:
Stored size: 1.39 KB
Contents
version: 2.1 install: &install name: Install bundle command: | gem install bundler bundle config set --local path vendor/bundle bundle install missingdeps: &missingdeps name: Install missing dependecies command: | cat /etc/os-release printf "deb http://deb.debian.org/debian buster main\ndeb http://security.debian.org buster/updates main\ndeb-src http://security.debian.org buster/updates main" > /tmp/sources.list sudo cp /tmp/sources.list /etc/apt/sources.list sudo apt-get --allow-releaseinfo-change update sudo apt-get install cmake libicu-dev libssl-dev test: &test name: Test bundle command: bundle exec rake test --trace executors: ruby-2-6: docker: - image: circleci/ruby:2.6.3 ruby-2-7: docker: - image: circleci/ruby:2.7.1 jobs: "ruby-test": parameters: ruby-version: type: executor executor: << parameters.ruby-version >> working_directory: ~/fluent-plugin-kubernetes_metadata_filter steps: - run: *missingdeps - checkout - run: *install - run: *test - store_test_results: path: coverage - store_artifacts: path: coverage workflows: "test_multiple_ruby_versions": jobs: - ruby-test: ruby-version: ruby-2-6 - ruby-test: ruby-version: ruby-2-7
Version data entries
13 entries across 13 versions & 1 rubygems