-
Notifications
You must be signed in to change notification settings - Fork 26
60 lines (54 loc) · 1.46 KB
/
ciEntryPoint.yml
File metadata and controls
60 lines (54 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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+=("oraclelinux:10")
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 }}
make-tests:
needs: [build-os-matrix]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/tests.yml
with:
os: ${{ matrix.os }}
rpm-build:
needs: [build-os-matrix]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/rpm-build.yml
with:
os: ${{ matrix.os }}
rpm-install:
needs: [build-os-matrix, rpm-build]
strategy:
matrix:
os: ${{ fromJSON(needs.build-os-matrix.outputs.os) }}
uses: ./.github/workflows/rpm-install.yml
with:
os: ${{ matrix.os }}
ipfix-elements-check:
needs: [rpm-build]
uses: ./.github/workflows/checkIpfixElemets.yml