Skip to content

Commit 91d5fa5

Browse files
committed
add paths to all workflows
1 parent a3827b8 commit 91d5fa5

File tree

8 files changed

+79
-25
lines changed

8 files changed

+79
-25
lines changed

.github/workflows/build_aarch64.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: Build AArch64
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
5+
paths:
6+
- 'src'
7+
- 'examples'
8+
- 'lib'
9+
- 'hw'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
917

1018
concurrency:
1119
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/build_arm.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
- 'hw'
1010
pull_request:
1111
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
1217

1318
concurrency:
1419
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/build_esp.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: Build ESP
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
5+
paths:
6+
- 'src'
7+
- 'examples'
8+
- 'lib'
9+
- 'hw'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
917

1018
concurrency:
1119
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/build_msp430.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: Build MSP430
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
5+
paths:
6+
- 'src'
7+
- 'examples'
8+
- 'lib'
9+
- 'hw'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
917

1018
concurrency:
1119
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/build_renesas.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: Build Renesas
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
5+
paths:
6+
- 'src'
7+
- 'examples'
8+
- 'lib'
9+
- 'hw'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
917

1018
concurrency:
1119
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/build_riscv.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
name: Build RISC-V
22

33
on:
4-
pull_request:
54
push:
6-
release:
7-
types:
8-
- created
5+
paths:
6+
- 'src'
7+
- 'examples'
8+
- 'lib'
9+
- 'hw'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
917

1018
concurrency:
1119
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Ruby
2121
uses: ruby/setup-ruby@v1
2222
with:
23-
ruby-version: '2.7'
23+
ruby-version: '3.0'
2424

2525
- name: Checkout TinyUSB
2626
uses: actions/checkout@v3

.github/workflows/test_hardware.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
11
name: Hardware Test
2+
23
on:
3-
pull_request:
44
push:
5-
release:
6-
types:
7-
- created
5+
paths:
6+
- 'src'
7+
- 'examples'
8+
- 'lib'
9+
- 'hw'
10+
pull_request:
11+
branches: [ master ]
12+
paths:
13+
- 'src'
14+
- 'examples'
15+
- 'lib'
16+
- 'hw'
817

918
# Hardware in the loop (HIL)
1019
# Current self-hosted instance is running on an EPYC 7232 server hosted by HiFiPhile user

0 commit comments

Comments
 (0)