-
Notifications
You must be signed in to change notification settings - Fork 16
33 lines (29 loc) · 1.04 KB
/
loading.yml
File metadata and controls
33 lines (29 loc) · 1.04 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
---
name: _loading
description: Load required parameters for the subsequent jobs
on:
workflow_call:
outputs:
build_matrix:
description: Build matrix
value: ${{ jobs.loading.outputs.build_matrix }}
full_matrix:
description: Full Matrix containing lava description
value: ${{ jobs.loading.outputs.full_matrix }}
jobs:
loading:
runs-on: ubuntu-latest
outputs:
build_matrix: ${{ steps.loading.outputs.build_matrix }}
full_matrix: ${{ steps.loading.outputs.full_matrix }}
steps:
- name: Sync codebase
uses: qualcomm-linux/video-driver/.github/actions/sync@video.qclinux.0.0
with:
event_name: ${{ github.event_name }}
pr_ref: ${{ github.event.pull_request.head.ref }}
pr_repo: ${{ github.event.pull_request.head.repo.full_name }}
base_ref: ${{ github.ref_name }}
- name: Load Parameters
id: loading
uses: qualcomm-linux/video-driver/.github/actions/loading@video.qclinux.0.0