Sha256: 53bc947fe354ce1e4be5446a50d88699af19de8f44574a871b49acc561715045

Contents?: true

Size: 1.04 KB

Versions: 5

Compression:

Stored size: 1.04 KB

Contents

name: Yum based Linux
on:
  push:
  pull_request:
jobs:
  build:
    name: Build
    strategy:
      fail-fast: false
      matrix:
        label:
          - CentOS 7 x86_64
          - CentOS 8 x86_64
          - Fedora 33 x86_64
          - AmazonLinux 2 x86_64
        include:
          - label: CentOS 7 x86_64
            test-docker-image: centos:7
            test-script: ci/yum-test.sh
          - label: CentOS 8 x86_64
            test-docker-image: centos:8
            test-script: ci/yum-test.sh
          - label: Fedora 33 x86_64
            test-docker-image: fedora:33
            test-script: ci/yum-test.sh
          - label: AmazonLinux 2 x86_64
            test-docker-image: amazonlinux:2
            test-script: ci/yum-test.sh
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: rake compile & rake test
        run: |
          docker run \
          --rm \
          --tty \
          --volume ${PWD}:/capng \
          ${{ matrix.test-docker-image }} \
          /capng/${{ matrix.test-script }}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
capng_c-0.2.2 .github/workflows/yum.yml
capng_c-0.2.1 .github/workflows/yum.yml
capng_c-0.2.0 .github/workflows/yum.yml
capng_c-0.1.8 .github/workflows/yum.yml
capng_c-0.1.7 .github/workflows/yum.yml