-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (51 loc) · 1.49 KB
/
example.yml
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
name: Run Dynamic Number of Jobs
on:
push:
branches: [ matrix ]
workflow_dispatch:
jobs:
generate-job-strategy-matrix:
runs-on: ubuntu-20.04
outputs:
job-strategy-matrix: ${{ steps.generate.outputs.job-strategy-matrix }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: 'recursive'
- name: Checkout CI scripts
uses: actions/checkout@v3
with:
repository: ctu-mrs/ci_scripts
ref: master
path: .ci_scripts
token: ${{ secrets.PUSH_TOKEN }}
- id: generate
run: |
JOB_STRATEGY_MATRIX=$(./.ci/get_build_matrix.sh unstable)
echo "::set-output name=job-strategy-matrix::$JOB_STRATEGY_MATRIX"
job:
needs: generate-job-strategy-matrix
runs-on: ubuntu-20.04
timeout-minutes: 360 # 6 hour timeout
strategy:
matrix:
job: ${{ fromJson(needs.generate-job-strategy-matrix.outputs.job-strategy-matrix) }}
max-parallel: 1 # Run jobs serially
steps:
- name: Load artifacts
uses: actions/download-artifact@v3
with:
name: debs
path: /tmp/
- name: Executing work
run: |
echo "starting with:"
echo "cat /tmp/debs/test.txt"
echo ""
echo "This is job named ${{ matrix.job }} > /tmp/debs/test.txt"
- name: Save artifacts
uses: actions/upload-artifact@v3
with:
name: debs
path: /tmp/debs/