Skip to content

[sc-90424]: Adding default code owners for compliance #87

[sc-90424]: Adding default code owners for compliance

[sc-90424]: Adding default code owners for compliance #87

Workflow file for this run

name: Yum based Linux
on:
push:
pull_request:
jobs:
build:
name: Build
strategy:
fail-fast: false
matrix:
label:
- CentOS 7 x86_64
- RockyLinux OS 8 x86_64
- RockyLinux OS 9 x86_64
- Fedora 37 x86_64
- AmazonLinux 2 x86_64
include:
- label: CentOS 7 x86_64
test-docker-image: centos:7
test-script: ci/yum-test.sh
- label: RockyLinux OS 8 x86_64
test-docker-image: rockylinux:8
test-script: ci/yum-test.sh
- label: RockyLinux OS 9 x86_64
test-docker-image: rockylinux:9
test-script: ci/yum-test.sh
- label: Fedora 37 x86_64
test-docker-image: fedora:34
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@v2
- name: rake compile & rake test
run: |
docker run \
--rm \
--tty \
--volume ${PWD}:/cmetrics-ruby \
${{ matrix.test-docker-image }} \
/cmetrics-ruby/${{ matrix.test-script }}