-
Notifications
You must be signed in to change notification settings - Fork 51
101 lines (101 loc) · 3.45 KB
/
process-events-dev.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
name: Run MATLAB tests (dev)
on:
push:
branches:
- dev
pull_request:
branches:
- dev
repository_dispatch:
types:
- wecsim-dev
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
dispatch_event:
name: Process dispatch event
runs-on: ubuntu-latest
outputs:
base_ref: ${{ github.event.client_payload.branch }}
folder: ${{ steps.output.outputs.folder }}
head_ref: ${{ github.event.client_payload.branch }}
include: ${{ steps.output.outputs.include }}
repository: ${{ github.repository }}
if: github.event_name == 'repository_dispatch'
steps:
- run: echo "Triggered by WEC-Sim commit ${{ github.event.client_payload.sha }}"
- name: Check out repository
uses: actions/checkout@v4
with:
lfs: true
ref: ${{ github.event.client_payload.branch }}
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: R2024a
- name: Get test target folder
uses: matlab-actions/run-command@v2
with:
command: getTestTargets
- name: Save output
id: output
run: |
echo "folder=$(cat folder.json | jq -cr)" >> $GITHUB_OUTPUT
echo "include=$(cat include.json | jq -cr)" >> $GITHUB_OUTPUT
other_event:
name: Process other events
runs-on: ubuntu-latest
outputs:
base_ref: ${{ github.base_ref || github.ref_name }}
head_ref: ${{ github.head_ref || github.ref_name }}
folder: ${{ steps.output.outputs.folder }}
include: ${{ steps.output.outputs.include }}
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
if: github.event_name != 'repository_dispatch'
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
lfs: true
fetch-depth: 0
- name: Generate git diff
uses: GrantBirki/git-diff-action@v2
id: git-diff-action
with:
json_diff_file_output: diff.json
file_output_only: "true"
- name: Install MATLAB
uses: matlab-actions/setup-matlab@v2
with:
release: R2024a
- name: Get test target folder
uses: matlab-actions/run-command@v2
with:
command: getTestTargets("diff.json")
- name: Save output
id: output
run: |
echo "folder=$(cat folder.json | jq -cr)" >> $GITHUB_OUTPUT
echo "include=$(cat include.json | jq -cr)" >> $GITHUB_OUTPUT
run_dispatch_event_tests:
name: Run tests
needs: dispatch_event
uses: ./.github/workflows/run-tests-reusable.yml
with:
base_ref: ${{ needs.dispatch_event.outputs.base_ref }}
folder: ${{ needs.dispatch_event.outputs.folder }}
head_ref: ${{ needs.dispatch_event.outputs.head_ref }}
include: ${{ needs.dispatch_event.outputs.include }}
repository: ${{ needs.dispatch_event.outputs.repository }}
run_other_event_tests:
name: Run tests
needs: other_event
uses: ./.github/workflows/run-tests-reusable.yml
with:
base_ref: ${{ needs.other_event.outputs.base_ref }}
head_ref: ${{ needs.other_event.outputs.head_ref }}
folder: ${{ needs.other_event.outputs.folder }}
include: ${{ needs.other_event.outputs.include }}
repository: ${{ needs.other_event.outputs.repository }}
if: ${{ needs.other_event.outputs.folder != '[]'}}