Skip to content

Commit fb68525

Browse files
authored
[All] Run CI workflows on changes in appropriate directories (#33)
1 parent 7e3dbe0 commit fb68525

File tree

4 files changed

+53
-26
lines changed

4 files changed

+53
-26
lines changed

.github/workflows/__CI__all.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Broadcaster CI
2+
3+
on:
4+
push:
5+
paths:
6+
- 'broadcaster/**'
7+
- '.github/workflows/**'
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build_check_broadcaster:
14+
name: Build and check Broadcaster
15+
uses: ./.github/workflows/__CI__build-check-app.yml
16+
with:
17+
workdir: broadcaster
18+

.github/workflows/__CI__nexus.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Nexus CI
2+
3+
on:
4+
push:
5+
paths:
6+
- 'nexus/**'
7+
- '.github/workflows/**'
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build_check_nexus:
14+
name: Build and check Nexus
15+
uses: ./.github/workflows/__CI__build-check-app.yml
16+
with:
17+
workdir: nexus
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Recognizer CI
2+
3+
on:
4+
push:
5+
paths:
6+
- 'recognizer/**'
7+
- '.github/workflows/**'
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
build_check_recognizer:
14+
name: Build and check Recognizer
15+
uses: ./.github/workflows/__CI__build-check-app.yml
16+
with:
17+
workdir: recognizer
18+
with-ffmpeg: true

0 commit comments

Comments
 (0)