summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-12-08 11:47:01 +0700
committerhathach <[email protected]>2022-12-08 11:47:01 +0700
commitd0758d0733019debc7a61bf554d14b9a1f16c0cb (patch)
treeb752de2440d6293f84ba8c5c6e0abfbeec79857c /.github
parent4deec2f4be2bf48e47dae4df969f4f0ecd042d94 (diff)
correct ci paths filter
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_aarch64.yml16
-rw-r--r--.github/workflows/build_arm.yml16
-rw-r--r--.github/workflows/build_esp.yml16
-rw-r--r--.github/workflows/build_msp430.yml16
-rw-r--r--.github/workflows/build_renesas.yml16
-rw-r--r--.github/workflows/build_riscv.yml16
-rw-r--r--.github/workflows/test_hardware.yml16
7 files changed, 56 insertions, 56 deletions
diff --git a/.github/workflows/build_aarch64.yml b/.github/workflows/build_aarch64.yml
index ccfca6316..c552a9574 100644
--- a/.github/workflows/build_aarch64.yml
+++ b/.github/workflows/build_aarch64.yml
@@ -3,17 +3,17 @@ name: Build AArch64
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
diff --git a/.github/workflows/build_arm.yml b/.github/workflows/build_arm.yml
index d1b94c47b..c16fc0d45 100644
--- a/.github/workflows/build_arm.yml
+++ b/.github/workflows/build_arm.yml
@@ -3,17 +3,17 @@ name: Build ARM
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
diff --git a/.github/workflows/build_esp.yml b/.github/workflows/build_esp.yml
index 7f2c292fa..df4d3d1f5 100644
--- a/.github/workflows/build_esp.yml
+++ b/.github/workflows/build_esp.yml
@@ -3,17 +3,17 @@ name: Build ESP
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
diff --git a/.github/workflows/build_msp430.yml b/.github/workflows/build_msp430.yml
index f41344e30..7e1c5b128 100644
--- a/.github/workflows/build_msp430.yml
+++ b/.github/workflows/build_msp430.yml
@@ -3,17 +3,17 @@ name: Build MSP430
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
diff --git a/.github/workflows/build_renesas.yml b/.github/workflows/build_renesas.yml
index d6550ed6d..d9254dea8 100644
--- a/.github/workflows/build_renesas.yml
+++ b/.github/workflows/build_renesas.yml
@@ -3,17 +3,17 @@ name: Build Renesas
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
diff --git a/.github/workflows/build_riscv.yml b/.github/workflows/build_riscv.yml
index 257050a53..026da7bdc 100644
--- a/.github/workflows/build_riscv.yml
+++ b/.github/workflows/build_riscv.yml
@@ -3,17 +3,17 @@ name: Build RISC-V
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
diff --git a/.github/workflows/test_hardware.yml b/.github/workflows/test_hardware.yml
index 622b079da..601a97e99 100644
--- a/.github/workflows/test_hardware.yml
+++ b/.github/workflows/test_hardware.yml
@@ -3,17 +3,17 @@ name: Hardware Test
on:
push:
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
pull_request:
branches: [ master ]
paths:
- - 'src'
- - 'examples'
- - 'lib'
- - 'hw'
+ - 'src/**'
+ - 'examples/**'
+ - 'lib/**'
+ - 'hw/**'
# Hardware in the loop (HIL)
# Current self-hosted instance is running on an EPYC 7232 server hosted by HiFiPhile user