Skip to content

Commit

Permalink
github-actions - add meta workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
SiskaPavel committed Mar 12, 2024
1 parent 8d20bf8 commit bea0f86
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: Continuous Integration pipeline

on: push

jobs:
check:
uses: ./.github/workflows/check.yml
build-os-matrix:
needs: check
runs-on: ubuntu-latest
outputs:
os: ${{ steps.os.outputs.os }}
steps:
- name: Build OS Array
id: os
run: |
osArray=()
osArray+=("rockylinux:9")
osArray+=("oraclelinux:8")
osArray+=("oraclelinux:9")
osArray+=("fedora:38")
osArray=$(jq --compact-output --null-input '$ARGS.positional' --args -- "${osArray[@]}")
echo "Updated os list: $osArray"
echo "os=$osArray" >> $GITHUB_OUTPUT
build:
needs: [build-os-matrix]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/build.yml
with:
os: ${{ matrix.os }}
rpm-test:
needs: [build-os-matrix, build]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/rpm-test.yml
with:
os: ${{ matrix.os }}

0 comments on commit bea0f86

Please sign in to comment.