Sha256: 28685235619984cec7ccf3e0bceebe000452e6dab8e54034a787e985bed64a8f

Contents?: true

Size: 1.37 KB

Versions: 3

Compression:

Stored size: 1.37 KB

Contents

name: linux
on:
  push:
    branches: [master]
  pull_request:
    branches: [master]
jobs:
  build:
    runs-on: ${{ matrix.os }}
    env:
      USE_RDKAFKA: 1
    strategy:
      fail-fast: false
      matrix:
        ruby: [ '3.1', '3.0', '2.7', '2.6' ]
        os:
          - ubuntu-latest
    name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Install confluent-kafka
      run: |
        sudo apt install -V -y gnupg2 wget
        wget https://packages.confluent.io/deb/6.0/archive.key
        sudo gpg2 --homedir /tmp --no-default-keyring --keyring gnupg-ring:/usr/share/keyrings/confluent-archive-keyring.gpg --import archive.key
        sudo chmod 644 /usr/share/keyrings/confluent-archive-keyring.gpg
        sudo sh -c 'echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/confluent-archive-keyring.gpg] https://packages.confluent.io/deb/6.0 stable main" > /etc/apt/sources.list.d/confluent.list'
        sudo apt update
        sudo apt install -y confluent-community-2.13 openjdk-11-jre netcat-openbsd
    - name: unit testing
      env:
        CI: true
      run: |
        sudo ./ci/prepare-kafka-server.sh
        gem install bundler rake
        bundle install --jobs 4 --retry 3
        bundle exec rake test

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
fluent-plugin-kafka-0.18.1 .github/workflows/linux.yml
fluent-plugin-kafka-0.18.0 .github/workflows/linux.yml
fluent-plugin-kafka-0.17.5 .github/workflows/linux.yml