Skip to content

Commit 44e6393

Browse files
committed
Fix path rules in CI workflows
Signed-off-by: Paul Guyot <pguyot@kallisys.net>
1 parent 30e519a commit 44e6393

File tree

9 files changed

+26
-0
lines changed

9 files changed

+26
-0
lines changed

.github/workflows/build-docs.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
paths:
2121
- '.github/workflows/**'
2222
- 'CMakeLists.txt'
23+
- 'CMakeModules/**'
2324
- 'doc/**'
2425
- 'libs/**'
2526
- 'src/libAtomVM/**'
@@ -33,6 +34,7 @@ on:
3334
paths:
3435
- '.github/workflows/**'
3536
- 'CMakeLists.txt'
37+
- 'CMakeModules/**'
3638
- 'doc/**'
3739
- 'libs/**'
3840
- 'src/libAtomVM/**'

.github/workflows/check-formatting.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ on:
1111
paths:
1212
- '.github/workflows/**'
1313
- 'CMakeLists.txt'
14+
- 'CMakeModules/**'
1415
- 'src/**'
1516
- 'tests/**'
1617
- '**/*.erl'
1718
pull_request:
1819
paths:
1920
- '.github/workflows/**'
2021
- 'CMakeLists.txt'
22+
- 'CMakeModules/**'
2123
- 'src/**'
2224
- 'tests/**'
2325
- '**/*.erl'

.github/workflows/esp32-build.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
paths:
1212
- '.github/workflows/esp32-build.yaml'
1313
- 'CMakeLists.txt'
14+
- 'CMakeModules/**'
1415
- 'libs/**'
1516
- 'src/platforms/esp32/**'
1617
- 'src/platforms/esp32/**/**'
@@ -19,9 +20,13 @@ on:
1920
pull_request:
2021
paths:
2122
- '.github/workflows/esp32-build.yaml'
23+
- 'CMakeLists.txt'
24+
- 'CMakeModules/**'
25+
- 'libs/**'
2226
- 'src/platforms/esp32/**'
2327
- 'src/platforms/esp32/**/**'
2428
- 'src/libAtomVM/**'
29+
- 'tools/packbeam/**'
2530

2631
concurrency:
2732
group: ${{ github.workflow }}-${{ github.ref != 'refs/heads/main' && github.ref || github.run_id }}

.github/workflows/esp32-mkimage.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
paths:
1212
- '.github/workflows/esp32-mkimage.yaml'
1313
- 'CMakeLists.txt'
14+
- 'CMakeModules/**'
1415
- 'libs/**'
1516
- 'src/platforms/esp32/**'
1617
- 'src/platforms/esp32/**/**'
@@ -19,9 +20,13 @@ on:
1920
pull_request:
2021
paths:
2122
- '.github/workflows/esp32-mkimage.yaml'
23+
- 'CMakeLists.txt'
24+
- 'CMakeModules/**'
25+
- 'libs/**'
2226
- 'src/platforms/esp32/**'
2327
- 'src/platforms/esp32/**/**'
2428
- 'src/libAtomVM/**'
29+
- 'tools/packbeam/**'
2530

2631
permissions:
2732
contents: write

.github/workflows/esp32-simtest.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
paths:
1313
- ".github/workflows/esp32-simtest.yaml"
1414
- "CMakeLists.txt"
15+
- 'CMakeModules/**'
1516
- "libs/**"
1617
- "src/platforms/esp32/**"
1718
- "src/platforms/esp32/**/**"
@@ -20,9 +21,13 @@ on:
2021
pull_request:
2122
paths:
2223
- ".github/workflows/esp32-simtest.yaml"
24+
- "CMakeLists.txt"
25+
- 'CMakeModules/**'
26+
- "libs/**"
2327
- "src/platforms/esp32/**"
2428
- "src/platforms/esp32/**/**"
2529
- "src/libAtomVM/**"
30+
- "tools/packbeam/**"
2631

2732
concurrency:
2833
group: ${{ github.workflow }}-${{ github.ref != 'refs/heads/main' && github.ref || github.run_id }}

.github/workflows/pico-build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
paths:
1212
- '.github/workflows/pico-build.yaml'
1313
- 'CMakeLists.txt'
14+
- 'CMakeModules/**'
1415
- 'libs/**'
1516
- 'src/platforms/rp2/**'
1617
- 'src/platforms/esp32/test/main/test_erl_sources/test_crypto.erl'
@@ -19,6 +20,7 @@ on:
1920
paths:
2021
- '.github/workflows/pico-build.yaml'
2122
- 'CMakeLists.txt'
23+
- 'CMakeModules/**'
2224
- 'libs/**'
2325
- 'src/platforms/rp2/**'
2426
- 'src/platforms/esp32/test/main/test_erl_sources/test_crypto.erl'

.github/workflows/publish-docs.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ on:
2020
paths:
2121
- '.github/workflows/publish-docs.yaml'
2222
- 'CMakeLists.txt'
23+
- 'CMakeModules/**'
2324
- 'doc/**'
2425
- 'libs/**'
2526
- 'src/libAtomVM/**'

.github/workflows/stm32-build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ on:
1111
paths:
1212
- '.github/workflows/stm32-build.yaml'
1313
- 'CMakeLists.txt'
14+
- 'CMakeModules/**'
1415
- 'src/platforms/stm32/**'
1516
- 'src/libAtomVM/**'
1617
pull_request:
1718
paths:
1819
- '.github/workflows/stm32-build.yaml'
1920
- 'CMakeLists.txt'
21+
- 'CMakeModules/**'
2022
- 'src/platforms/stm32/**'
2123
- 'src/libAtomVM/**'
2224

.github/workflows/wasm-build.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ on:
1111
paths:
1212
- '.github/workflows/wasm-build.yaml'
1313
- 'CMakeLists.txt'
14+
- 'CMakeModules/**'
1415
- 'libs/**'
1516
- 'src/platforms/emscripten/**'
1617
- 'src/libAtomVM/**'
1718
pull_request:
1819
paths:
1920
- '.github/workflows/wasm-build.yaml'
2021
- 'CMakeLists.txt'
22+
- 'CMakeModules/**'
2123
- 'libs/**'
2224
- 'src/platforms/emscripten/**'
2325
- 'src/libAtomVM/**'

0 commit comments

Comments
 (0)