Sha256: 710a349e685611f861ada876e99e2917fd405fff05d1ba168fb00261de4891ad

Contents?: true

Size: 1.06 KB

Versions: 1

Compression:

Stored size: 1.06 KB

Contents

name: Yum based Linux
on:
  push:
  pull_request:
jobs:
  build:
    name: Build
    strategy:
      fail-fast: false
      matrix:
        label:
          - RockyLinux 8 x86_64
          - AlmaLinux 9 x86_64
          - Fedora 33 x86_64
          - AmazonLinux 2 x86_64
        include:
          - label: RockyLinux 8 x86_64
            test-docker-image: rockylinux:8
            test-script: ci/yum-test.sh
          - label: AlmaLinux 9 x86_64
            test-docker-image: almalinux:9
            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

1 entries across 1 versions & 1 rubygems

Version Path
capng_c-0.2.3 .github/workflows/yum.yml