Skip to content

Commit

Permalink
Fix path filter patterns for doxygen workflow (#24944)
Browse files Browse the repository at this point in the history
* Fix regexp paths for doxygen workflow

* Do not use wretry.action for doxygen workflow

The chip-build-doxygen image does not contain node binary. Retry is not
required for docygen workflow because it is can be run manually anyway.
  • Loading branch information
arkq authored and pull[bot] committed Jun 24, 2023
1 parent b8ab4d0 commit 1927081
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions .github/workflows/doxygen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ on:
- "**.c[cs]?"
- "**.cxx"
- "**.cpp"
- "**.c++"
- "**.c\\+\\+"
- "**.ii"
- "**.ixx"
- "**.ipp"
- "**.i++"
- "**.i\\+\\+"
- "**.inl"
- "**.[hH]"
- "**.hh"
- "**.HH"
- "**.hxx"
- "**.hpp"
- "**.h++"
- "**.h\\+\\+"
- "**.mm"
- "**.txt"
- "**.[ido]dl"
Expand All @@ -48,18 +48,18 @@ on:
- "**.c[cs]?"
- "**.cxx"
- "**.cpp"
- "**.c++"
- "**.c\\+\\+"
- "**.ii"
- "**.ixx"
- "**.ipp"
- "**.i++"
- "**.i\\+\\+"
- "**.inl"
- "**.[hH]"
- "**.hh"
- "**.HH"
- "**.hxx"
- "**.hpp"
- "**.h++"
- "**.h\\+\\+"
- "**.mm"
- "**.txt"
- "**.[ido]dl"
Expand All @@ -80,7 +80,7 @@ jobs:
name: Build Doxygen
timeout-minutes: 5

runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container:
image: connectedhomeip/chip-build-doxygen:0.6.35

Expand All @@ -89,15 +89,8 @@ jobs:
steps:
- name: "Print Actor"
run: echo ${{github.actor}}
- uses: Wandalen/wretry.action@v1.0.36
name: Checkout
with:
action: actions/checkout@v3
with: |
submodules: true
token: ${{ github.token }}
attempt_limit: 3
attempt_delay: 2000
- name: Checkout
uses: actions/checkout@v3
- name: Generate
run: scripts/helpers/doxygen.sh
- name: Extract branch name
Expand Down

0 comments on commit 1927081

Please sign in to comment.